// JavaScript Document

$(document).ready(function(){
	indexScripts.init();			
});


indexScripts = {

	init: function() {	

		//preload images
		giImages = new Array();
		giImages[1]= "/wp-content/themes/oecta/images2/global/layout/bgGetInvolved1Active.png"; 
		giImages[2]= "/wp-content/themes/oecta/images2/global/layout/bgGetInvolved2Active.png"; 
		giImages[3]= "/wp-content/themes/oecta/images2/global/layout/bgGetInvolved3Active.png"; 
		
		preloadImages(giImages);
	

		//header images

		headerImageData = new Array();
		headerImageData[1]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader1.png"; 
		headerImageData[2]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader2.png"; 
		headerImageData[3]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader3.png";
		headerImageData[4]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader4.png"; 
		headerImageData[5]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader5.png"; 
		headerImageData[6]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader6.png"; 
		headerImageData[7]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader7.png"; 
		headerImageData[8]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader8.png"; 
		headerImageData[9]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader9.png"; 
		headerImageData[10]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader10.png"; 
		headerImageData[11]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader11.png";
		headerImageData[12]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader12.png"; 
		headerImageData[13]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader13.png"; 
		headerImageData[14]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader14.png"; 
		headerImageData[15]= "/wp-content/themes/oecta/images2/global/layout/header/sfcHeader15.png"; 
	
		var randomNumber = (Math.floor(Math.random()*15)+1)
		$("#header #sfcHeader").css("background-image","url('" +headerImageData[randomNumber] + "')");
		




		var objectHTML = ''+
		'<object width="310" height="198">'+
			'<param name="movie" value="http://www.youtube.com/v/TfDJz38IFWs?fs=1&hl=en_US&autoplay=1"></param>'+
			'<param name="allowFullScreen" value="true"></param>'+
			'<param name="rel" value="0"></param>'+
			'<embed src="http://www.youtube.com/v/TfDJz38IFWs?fs=1&hl=en_US&autoplay=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="310" height="198"></embed>'+
		'</object>';
		
		$("#homeVideo").click(function(){
			$(this).hide();
			$("#homeVideoContainer").html(objectHTML);
		});


	
	}
	//e:init
}
//e:globalScripts
