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());
	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);
	}
}

function nsfw() {
	var ok = getCookie('nsfwok');
	if(ok)
		return true;
	ok = confirm("This page (only) is *not* suitable for kids, probably not safe for work. Hit cancel if you don't want to proceed.");
	if(ok)
		setCookie('nsfwok','ok',1);
	return ok;
}

function resize() {
  $('.front-main img').height($('body').height()-80);
  if(Galleria && Galleria.get(0)) {
	var myGalleria = Galleria.get(0);
	var newWidth = $('#gallery').width();
	newHeight = $('#gallery').height();
	myGalleria.$('container').width($('body').width()-250);
	myGalleria.$('container').height($('body').height()-60);
	myGalleria.rescale();
  }
}

$(function() {
	resize();
	$(window).resize(function() { resize(); });
});

