$(document).ready(function(){	$('a[target="_blank"]').addClass('blank');	$('a.blank').attr('target', '_blank');	$('img[align="left"]').addClass('left');	$('img[align="right"]').addClass('right');	$(".fancy").fancybox({		'titlePosition'  : 'over',		'transitionIn' : 'elastic',		'transitionOut' : 'elastic'	});	var ex = document.referrer;	if(ex) {		$('.prihls input[name="RET"]').attr('value',ex);	}	valideForm("form.validateForm");	$('.popisok').each(function(){		$(this).addClass("default");		$(this).attr("value", this.title);	});	$('.popisok').focus(function() {		$(this).removeClass("default").addClass("active");		if (this.value == this.title){			this.value = '';		}		if(this.value != this.title){			this.select();		}	});	$('.popisok').blur(function() {		if (this.value == ''){			$(this).removeClass("active").addClass("default");			this.value = this.title;		} else if (this.value == this.title){			$(this).removeClass("active").addClass("default");		}	});	$('.rating').each(function(){		var markup;		var hviezd;		hviezd = parseInt($(this).text());		if(hviezd==0) { markup = "<i></i><i></i><i></i><i></i><i></i>"; }		if(hviezd==1) { markup = "<b></b><i></i><i></i><i></i><i></i>"; }		if(hviezd==2) { markup = "<b></b><b></b><i></i><i></i><i></i>"; }		if(hviezd==3) { markup = "<b></b><b></b><b></b><i></i><i></i>"; }		if(hviezd==4) { markup = "<b></b><b></b><b></b><b></b><i></i>"; }		if(hviezd==5) { markup = "<b></b><b></b><b></b><b></b><b></b>"; }		//alert(markup);		$(this).empty().append(markup);	});	// SLIDER	var totoToJe = 0;	var kolkoIchJe = $('.slide-news li').size();	if(kolkoIchJe<1){ $('.slide').hide(); }	$('.slide .cnt').prepend('<div class="news"><ul></ul></div>');	$('.slide-news li').each(function(){		obrazok = $(this).children('a').children('b').children('img').not('.gray').attr('title');		titulka = $(this).children('a').children('b').children('img').not('.gray').attr('alt');		kategoria = $(this).children('a').children('.kat').text();		datum = $(this).children('a').children('.dat').text();		autor = $(this).children('a').children('.aut').text();		kam = $(this).children('a').attr('href');		$('.news ul').append('<li><b><a href="' + kam + '"><img src="' + obrazok + '" width="355" height="237" alt="' + titulka + '" /></a></b><strong class="category">' + kategoria + '</strong><h2><a href="' + kam + '">' + titulka + '</a></h2><span class="additional"><strong>' + datum + '</strong> pridal <strong>' + autor + '</strong></span></li>');	});	$('.slide-news li').first().addClass("active");	$('.news li').css('opacity',0);	$('.news li').eq(totoToJe).css('opacity',1);	rotateIt = function(ktoreToJe){		$('.slide-news li').removeClass("active");		$('.slide-news li').eq(ktoreToJe).addClass("active");		$('.news ul').stop(true, true).css('marginLeft', -1 * 980 * ktoreToJe + 'px');		$('.news li').css('opacity',0);		$('.news li').eq(ktoreToJe).animate({opacity: 1},300);	}	rotateSwitch = function(){		play = setInterval(function(){			totoToJe++;			if(totoToJe==kolkoIchJe){totoToJe=0;}			rotateIt(totoToJe);		}, 4000);	};	rotateSwitch();	$(".news").hover(function() {clearInterval(play);},function() {rotateSwitch();});	$('.arrow-lft').click(function(){		clearInterval(play);		if(totoToJe==0){			rotateIt(kolkoIchJe - 1);			totoToJe = kolkoIchJe - 1;		}		else {			rotateIt(totoToJe - 1);			totoToJe = totoToJe - 1;		}		rotateSwitch();		return false;	});	$('.arrow-rgt').click(function(){		clearInterval(play);		if(totoToJe==(kolkoIchJe - 1)){			rotateIt(0);			totoToJe = 0;		}		else {			rotateIt(totoToJe + 1);			totoToJe = totoToJe + 1;		}		rotateSwitch();		return false;	});	/*$('.slide-news a').not('.arrow-rgt, .arrow-lft').click(function(){		clearInterval(play);		rotateIt($('.slide-news li').index($(this).parent('li')));		totoToJe = $('.slide-news li').index($(this).parent('li'));		rotateSwitch();		return false;	});*/	// POKEC COOKIES	checkCookie();	$('.closeit').click(function(){		$('.pokec').remove();		Delete_Cookie();		setCookieClosed();		return false;	});	function Delete_Cookie(){		username=getCookie('fitmagazinush');		if (username!=null && username!=""){			document.cookie = "fitmagazinush=; expires=Thu, 01-Jan-70 00:00:01 GMT;path=/";		}	}	function getCookie(c_name){		if (document.cookie.length>0){			c_start=document.cookie.indexOf(c_name + "=");			if (c_start!=-1){				c_start=c_start + c_name.length+1;				c_end=document.cookie.indexOf(";",c_start);				if (c_end==-1) c_end=document.cookie.length;				return unescape(document.cookie.substring(c_start,c_end));			}		}		return "";	}	function setCookieClosed(){		var date = new Date();		date.setTime(date.getTime()+2592000000);		var expires = "; expires="+date.toGMTString();		document.cookie="fitmagazinush=closed"+expires+"; path=/";	}	function checkCookie(){		username=getCookie('fitmagazinush');		if (username!=null && username!=""){			Delete_Cookie();			setCookieClosed();		}		else {			$('.pokec').css('display','block');		}	}});
