// JavaScript Document

/*	----------------------------
 *		Document Ready
 *	----------------------------
 */	
$(document).ready(function() {

/*	Page Background - Supersized  */

	$.fn.supersized.options = {  
		startwidth: 1000,  
		startheight: 563,
		vertical_center: 1,
		slideshow: 0,
		navigation: 1,
		transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
		pause_hover: 0,
		slide_counter: 1,
		slide_captions: 1,
		slide_interval: 4000  
	};
	$('#supersize').supersized(); 

/*	Innerfade - for scrolling text  */

	$('#fade').innerfade({ speed: 'slow', timeout: 2000, type: 'sequence', containerheight: '1.5em' }); 

/*	Cycle - for slideshow  */

	if ($("#slideshow img").length) {
		$('#slideshow').innerfade({ speed: 'slow', timeout: 2500, type: 'sequence', containerheight: '312px' })
	}

/*	Clients - open links in new window  */

	$('#clients a').attr({ target: '_blank' }); 
	
	return false;
});

