window.onload = function() {
	var params = {scale:"noscale", salign:"left", base:"../"};
	var attributes = {};
	var flashvars = {video:"1"};

	sLocation = "" + window.location + "";
	sLocation = sLocation.toLowerCase();
	
	if(sLocation.indexOf("/basketball1") != -1) {
		flashvars = {video:"2"};
	}
	if(sLocation.indexOf("/basketball2") != -1) {
		flashvars = {video:"3"};
	}
	if(sLocation.indexOf("/baseball1") != -1) {
		flashvars = {video:"4"};
	}
	if(sLocation.indexOf("/baseball2") != -1) {
		flashvars = {video:"5"};
	}
	if(sLocation.indexOf("/football1") != -1) {
		flashvars = {video:"6"};
	}
	if(sLocation.indexOf("/football2") != -1) {
		flashvars = {video:"7"};
	}

	swfobject.embedSWF("../home.swf", "cntr_flash", "100%", "830", "9.0.0","../expressInstall.swf", flashvars, params, attributes);
}
/**********************************************************************NEW FUCTIONS FOR RE_SKINNING***************************************************************************************/
/**********************************************************
 * Kimberly-Clark Healthcare Custom JS Functions
 * http://www.kchealthcare.com/
 *
 * Created: May 09
 **********************************************************/


/**********************************************************
 * GLOBAL VARIABLES
 **********************************************************/

var run_once = false;

/**********************************************************
 * REGION MENU
 **********************************************************/

var region_menu = {
	toggle: function() {
		$("#cntr_header_search").toggle();
		$("#cntr_region_shadow").toggle();
	}
}

/**********************************************************
 * IMAGE CARROUSEL
 **********************************************************/

var image_carrousel = {
	delay: 10000, // rotation frequency in ms
	max: 3, // maximum number of hero images
	init: function() {
		setInterval(image_carrousel.rotate, image_carrousel.delay);
	},
	rotate: function() {
		var $hero_image = $("#cntr_home_hero img:visible");
		var hero_image_id = $hero_image.attr("id");

		var pos = hero_image_id.split("img_hero");

		var hero_image_next = (parseInt(pos[1]) + 1 > image_carrousel.max) ? 1 : parseInt(pos[1]) + 1;

		$hero_image.fadeOut();
		$("#img_hero" + hero_image_next).fadeIn();
	}
}

/**********************************************************
 * INITIAZATION
 **********************************************************/

$(function() {
	$("#cntr_header_region a").click(function(){region_menu.toggle();return false;});
	$("#cntr_region_shadow").mouseleave(function(){region_menu.toggle();});

	if($("#cntr_home_whats_new").length > 0)
		image_carrousel.init();
});

/*************************************************************************************************************************************************************/