$(document).ready(function(){
	$('.mainlevel-ana').hover(function(){
		temp = $(this).find('img');
		temp.attr('src', temp.attr('src').replace(/_dugme/,'_hover'));
	},function(){ 
		temp.attr('src', temp.attr('src').replace(/_hover/,'_dugme'));
	});
});


$(document).ready(function(){
	$('a').click(function(){
			$(this).blur();
		});
});


$(document).ready(function(){
		$('.stranafrontpage .leva_polovina .innerNewsHolder').hover(
				function () {
				    $(this).find("h2")
					.animate({ color: "#ece085" }, 400 ).find("a").animate({ color: "#ece085" }, 400 );

				    //$(this).find("h3").css("background","#004890");
				    //$(this).find("h3 a").css("color","#fff");
				},
				function () {
				    $(this).stop().find("h2").stop().find("a").stop();
				    $(this).find("h2").css("color","#dc940e");
				    $(this).find("h2 a").css("color","#dc940e");
				});

});

$(document).ready(function(){
		$('.stranafrontpage .desna_polovina .innerNewsHolder').hover(
				function () {
				    $(this).animate({ backgroundColor: "#181400" }, 400 );

				    //$(this).find("h3").css("background","#004890");
				    //$(this).find("h3 a").css("color","#fff");
				},
				function () {
					$(this).stop();
				    $(this).css("backgroundColor","#000000");
				});

});
$(document).ready(function() {
		if( $('.stranavideo .goreHolder a').length > 0 ){
			$('.stranavideo .goreHolder a').lightBox();
		}
		if( $('.stranaeasygallery .goreHolder a').length > 0 ){
			$('.stranaeasygallery .goreHolder a.thickbox').lightBox();
		}

		if( $('.strana25 .blogitem a:has(img)').length > 0 ){
			$('.strana25 .blogitem a:has(img)').lightBox();
		}
		$('.stranaeasygallery h1').css('cursor','pointer').click(function(){window.location.href='odjila-download.php'});

		if( $('.stranafrontpage').length < 1 ){
			//			alert('bre');
			window.scroll(0, 200);
		}
});

