$(function(){	
	$('a').click(function(){
		this.blur();
	})
	
	// lightbox elements
	$('a.flyer, a.img').lightbox(); 
	
	// fake hover (over image anchors set via style html attr)
	$('#navi ul.nav_2 > li.active > a').css('background-position','bottom left');
	$('#navi ul.nav_2 > li:not(.active) > a, #childs_list > li > a').hover(function(){
		$(this).css('background-position','bottom left');
	},function(){
		$(this).css('background-position','top left');
	});
	
	
	$('img').ready(function(){
		// prodlouzeni vertikalnich car a modreho panelu na celou vysku okna/dokumentu
		if($(window).height() > $('body').height()){
			var wh = $(window).height()-138; 
		}else{
			var wh = $(document).height()-138;
		}
		var ch = $('#text').height();
		if(wh > ch){
			$('body:not(.home) #text').css({
				height: wh+'px'
			})
		}
	});
	
	// remove mailing registration predefined value
	$('#mailing_reg input[name=mail]').focus(function(){
		if(this.value == 'váš em@il'){
			this.value = ''; 
		};
	});
	
	// alert(location.hash);
});

