function setCookie(c_name,value,exdays){
	var exdate=new Date();
	exdate.setDate(exdate.getDate() + exdays);
	var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()) + "; domain=.overteam.com";
	document.cookie=c_name + "=" + c_value;
}
function getCookie(c_name){
	var i,x,y,ARRcookies = document.cookie.split(";");
	for (i=0;i<ARRcookies.length;i++)
	{
		x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
		y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
		x=x.replace(/^\s+|\s+$/g,"");
		if (x==c_name){
			return unescape(y);
		}
	}
}

var cookieName = "fblikepopup";
var fbLikePopUpDisplayed = getCookie("fblikepopup");
if (fbLikePopUpDisplayed==null || fbLikePopUpDisplayed=="") {
	$(".layerPopup").ready(function () {
	    $(".gallery a[rel^='prettyPhoto']").prettyPhoto({
	    	opacity: 0.90,
	    	theme: 'facebook',
	    	default_width: 660,
	    	default_height: 200,
	    	hideflash: true,
	    	deeplinking: false,
	    	changepicturecallback: function(){ $(".pp_details").css("display", "none"); }
	    });
	    
	    $.prettyPhoto.open("#layerPopup");
	    
	    setCookie(cookieName, "t", 365 * 10);
	});
}

