$(document).ready(function(){
	try
	{	//Check Cookies For First Enter
		if(document.cookie.indexOf("EmployerDefaultPagePlayVideoAuto") == -1)
			{//If this is the first time user entered to this page
			
				//Set cookies for 6 months
				var expires = new Date();//cookie 6 months
				expires.setTime(expires.getTime() + 6*(1000 * 60 * 60 * 24 * 30));
				setCookie("EmployerDefaultPagePlayVideoAuto", "1", "/", expires);
					
				//Play video automatically when user enter
				if(navigator.userAgent.indexOf("MSIE 6.0") != "-1")
					$('#divVideoContainer').html('<param name="movie" value="http://www.youtube.com/watch?v=1A0lpPvHuDc&hl=en&fs=1&autoplay=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/1A0lpPvHuDc&hl=en&fs=1&autoplay=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="287px" height="208px"></embed>');
				else
					$('#divVideoContainer').html('<object width="287px" height="208px"><param name="movie" value="http://www.youtube.com/watch?v=1A0lpPvHuDc&hl=en&fs=1&autoplay=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/1A0lpPvHuDc&hl=en&fs=1&autoplay=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="287px" height="208px"></embed></object>');	
			}
	}catch(e)
	{
		$('#divVideoContainer').width('287px').height('207px');
	}
			
	try
	{
		//Check if show sign in
		if(RequestQueryString('ShowSignIn') == '1')
		{
			$('#divEmployerSignIn').show();	
			location.href = "#aEmployerSignIn";
		}
		$('#tdForgorPassword').css('text-align','right');//change Design on sign up box
	}catch(e)
	{
		
	}
});	

function PlayVideo(VideoID)
{	
	try
	{
		//Play Chosen Video
		if(navigator.userAgent.indexOf("MSIE 6.0") != "-1")
			$('#divVideoContainer').html('<param name="movie" value="http://www.youtube.com/watch?v=' + VideoID + '&hl=en&fs=1&autoplay=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/' + VideoID + '&hl=en&fs=1&autoplay=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="287px" height="208px"></embed>');
		else	
			$('#divVideoContainer').html('<object width="287px" height="208px"><param name="movie" value="http://www.youtube.com/watch?v=' + VideoID + '&hl=en&fs=1&autoplay=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/' + VideoID + '&hl=en&fs=1&autoplay=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="287px" height="208px"></embed></object>');
	}catch(e)
	{
		
	}
}
