$(document).ready(function(){
	
	var DERKS = $.cookieJar('DERKS');
	var h = $(window).height();
	var w = $(window).width();
	
	if ($('#cat-popup')) {
		$('#overlay-popup').css({'width' : '100%', 'height' : h});
		$('#cat-popup').css({'top' : ((h / 2) - 300), 'left' : ((w / 2) - 160)});
		
		$('#cat-popup').fadeIn('slow');
		$('#overlay-popup').fadeIn('slow');
		
		$('#cat-popup a, #overlay-popup').click(function(){
			$('#cat-popup').fadeOut('normal');
			$('#overlay-popup').fadeOut('normal');
			DERKS.set('visited', true);
		});
	}	
});