
 //adding autoplay link handler
 $("#autoplayLink").click(function(){
 if (titlePagePlayerAutoPlay){
 SetCookie("titlePagePlayer.autoPlay","false",180,"","miramax.com");
 $("#autoplayLinkLabel").text("Enable Autoplay");
 titlePagePlayerAutoPlay = false;
 } else {
 SetCookie("titlePagePlayer.autoPlay","true",180,"","miramax.com");
 $("#autoplayLinkLabel").text("Disable Autoplay");
 titlePagePlayerAutoPlay = true;
 }
 return false;
}); 

if (titlePagePlayerAutoPlay) {
	$("#autoplayLinkLabel").text("Disable Autoplay");
} else {
	$("#autoplayLinkLabel").text("Enable Autoplay");
}

