



$(document).ready(function()
{
	

/**** Skriptet visar popuppen för användaren när sidan laddas. Cookien styr om den redan har visats. ****/

		var cookieDays = 1;
	
		if ($.cookie('coopjul') != '1') 
		{
			// Load contents of #popRam from the page:
         
         if ($('#popRam').length) {
                  $.colorbox({inline:true, href:"#popRam", innerWidth:"831px", innerHeight:"575px", scrolling:false, fixed:true, transition:"elastic"});
                  $.cookie('coopjul', '1', { expires: cookieDays });
         }
		}

		$('#deleteCookie').click(function() {
			$.cookie('coopjul', null);
			alert("Klart!");
			return false;
		});


}
);
	 
	 
	 

