showModal = function() {
	TB_show('ClipaDistribution.eu', "http://www.clipadistribution.eu/adult/check/?KeepThis=true&TB_iframe=true&height=180&width=300", 'thickbox');
}

checkVisit = function() {
	// Check last viewed version
	var cookie = $.cookie('clipa');
	if (cookie == null || parseFloat(cookie) < 1.2) {
		showModal();
		$.cookie('clipa', '1.2', {expires: 7});
	}
}

$(document).ready(function(){

		checkVisit();
		
		$("#meniu li").hover(
			function(){$("ul", this).fadeIn("normal");}, 
			function() {} 
		);
		
		$("#top #top-links").hover(
			function(){ $("ul", this).fadeIn("normal"); }, 
			function() { } 
		);
	
		if (document.all) {
			$("#meniu li").hoverClass ("sfhover");
			$("#top #top-links").hoverClass("sfhover");
		}
		
		// unobstrusive _target attrbitute for links
		new_window_link();
});