$(document).ready(function() { 
/* ---- Funkce na mizeni textu z vyhledavani */ 
	
	// Prevezme text z elementu label
	var labelTxt = $('#header form label').text();

	// Prida text z elementu label do vyhlevaciho pole - value
	$('#search-input').attr('value',labelTxt);
	
	// Focus & blur efekty
	$('#search-input').focus(function(){
		if ((this.value == '') || (this.value == labelTxt)) {
			$(this).val('');
			$(this).addClass('focus');
		}
	});
	$('#search-input').blur(function(){
		if (this.value == '') {
			$(this).val(labelTxt);
			$(this).removeClass('focus');
		}
	});
	
	/* odebirani posledniho borderu */
	$('#menu li:last').addClass('nob');
	$('#header form label:first').css({display: "none"});
	
	/* pridat do oblibenych */
	$('.favourites').jFav();
	
	$("#menu ul ul").hover(function() {
  	$(this).parent().addClass("active")
  }
  , function() {
  	$(this).parent().removeClass("active")
  }
  );
	
	/* image slider */
	$('#slideIMG').innerfade({ 
        speed: 'slow',
				timeout: 10000,
				type: 'sequence',
				containerheight: '256px'
 }); 
	
/* end */
}); 
