/* parallax boot */

jQuery(document).ready(function(){
	jQuery('#parallax').jparallax({});
});

//////////////

/* fancybox nastavitve */

$(document).ready(function() { 
						   
/* This is basic - uses default settings */ 
$("a#slika").fancybox(); 

/* Using custom settings */ 

$("a.skupina").fancybox({ 
						
'zoomSpeedIn': 300, 
'zoomSpeedOut': 300, 
'overlayShow': false, 
'overlayOpacity': 1, 
'padding':1,

}); }); 
////////////



/* Hover Intent boooooot */
$(document).ready(function(){
			$("#knjige2 li").hover(makeTall,makeShort);
			$("#knjiga3 li").hoverIntent(makeTall,makeShort);
			$("#knjiga li").hoverIntent({
				sensitivity: 3, 
				interval: 100, 
				over: makeTall, 
				timeout: 300, 
				out: makeShort
			});
		}); // close document.ready

		function makeTall(){  $(this).animate({"height":250},200);}
		function makeShort(){ $(this).animate({"height":44},200);}
///////////

