/**
 * @author michal
 */
$(document).ready(function(){
	
	Shadowbox.init();
	
	//crumbpath fix
	if($('#crumbpath a').length == 1){
		$('#crumbpath .crumbpath_dot').remove();
	}
	//end crumbpath fix
	
});//end document ready

$(window).load(function(){
	
	//shadows
	$('#headerimages p').dropShadow({left: 2, top: 2, blur: 1, color: "black"});	
	$('#headerimages p').dropShadow({left: 1, top: 1, blur: 1, color: "black"});	
	//end shadows		
	
});//end window load

//preload images
(function($){var cache=[];$.preLoadImages=function(){var args_len=arguments.length;for(var i=args_len;i--;){var cacheImage=document.createElement('img');cacheImage.src=arguments[i];cache.push(cacheImage);}}})(jQuery)
//end preload images

