// JavaScript Document
$(document).ready(function() {
						   					   
	$("#banner").css({'background-image' : "url(images/banner" + Math.floor(Math.random()*11)	 + ".jpg)" });
	$("#bannerMask").css({'background-image' : "url(images/banner" + Math.floor(Math.random()*11)	 + ".jpg)" });
	
//LOADING POPUP
	//Click the button event!
	$("a.cs").click(function(){
		//centering with css
		centerPopup();
		//load popup
		loadPopup();
		return false;	
	});
				
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose").click(function(){
		disablePopup();
	});
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});						   
		
	
	
//$(".panelButton").click(function(){  //panel div click	
//							 
//		
//		var panelName = String($(this).attr("name"));
//		panelName = "#" + panelName;
//		
//		//track panel click with google analytics
//		pageTracker._trackPageview("/" + panelName);
//						   
//		//hide kids animation on lower row
//		$("#kid4").stop();
//		$("#kid5").stop();
//		$("#kid6").stop();
//		$("#kid7").stop();
//						   
//						   
//		//$(".subNav").hide("fast");
//		$(".kid").slideUp("slow");
//		$("#infusionWellness").animate({height: "0"}, 600)
//		$(".subContentPanel").hide("fast");
//		$("#header").animate({height: "146"}, 600)
//		$(panelName).animate({opacity: "1", height: "390"}, 600).removeClass("panelClosed")
//		$(".panel").not(panelName).animate({height: "31"}, 600).removeClass("panelOpen")
//		$(".panel").not(panelName).addClass("panelClosed")
//		//$(this).find(".subNav").fadeIn("slow");
//		$(panelName).addClass("panelOpen")
//		$(panelName).find(".subContentPanel:first").slideDown("slow"); //default subContentPanel open on load
//		$("li").removeClass("active")
//		$(panelName).find("li:first").addClass("active");
//		//reset panel slides
//		$("a").removeClass("current");
//		$(panelName).find("a:first").addClass("current");
//		$("#maskedContentInfusion").animate({left: "0"}, 500);
//		$("#maskedContentAction").animate({left: "0"}, 500);
//		$("#maskedContent").animate({left: "0"}, 500);
//		leftPos = 0;
//		leftPosAction = 0;
//		leftPosinfusion = 0;
//		kidSection = "top";
//	return false;			
//	});		

$(function() {
    setInterval( "bannerSwitch()", 10000 ); //6000
});	

$(function() {
    setTimeout( "centerPopup(); loadPopup()", 3000 ); //6000
});


  
}); //jQuery END

function bannerSwitch() {
   var randomnumber=Math.floor(Math.random()*11)
	//alert(randomnumber);
	
			
			//$("#bannerMask").fadeIn(2500, function() { $("#bannerMask").fadeOut(2500); });
			$("#bannerMask").css({'background-image' : "url(images/banner" + Math.floor(Math.random()*11)	 + ".jpg)" });
			$("#bannerMask").fadeIn(5000, function() {$("#banner").css({'background-image' : "url(images/banner" + Math.floor(Math.random()*11)	 + ".jpg)" }); $("#bannerMask").fadeOut(5000);});
			//$("#banner").css({'background-image' : "url(images/banner" + randomnumber + ".jpg)" });
			
			//$("#banner").css({'background-image' : "url(images/banner" + Math.floor(Math.random()*11) + ".jpg)" });
			//$("#bannerMask").css({'background-image' : "url(images/banner" + Math.floor(Math.random()*11) + ".jpg)" });
			
	
	
	
}

/***************************/
//@Author: Adrian "yEnS" Mato Gondelle
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatus = 0;
	}
}

//centering popup
function centerPopup(){
	//request data for centering
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popupContact").height();
	var popupWidth = $("#popupContact").width();
	//centering
	$("#popupContact").css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});
	//only need force for IE6
	
	$("#backgroundPopup").css({
		"height": windowHeight
	});
	
}


 