	var cache = {
	main : function() {
		try{document.execCommand("BackgroundImageCache", false, true);
		}
		catch(err){}
	}
}
 

  	
 $(document).ready(function(){
	 
	 	$('#cycle a').css('visibility','visible');
	 	$('#cycle a:first').css('display','none');
	 	$('#cycle a:first').fadeIn('2000')
	 	$('#cycle a').each(function(){
	 		if ($(this).width()> $(this).height())
	 			$(this).css('padding-top','0px');
	 	});
	 	$('#cycle').cycle({ 
	    fx:    'fade', 
	    speed:  3000 
	 });
	 	$('#cycle a').css('display','block');
		$('#index').css('display','none');
		$('#index').fadeIn('slow');
		$('#right.images').css("visibility","hidden");			
		$(function()
			{
				$('#scroll').jScrollPane({showArrows:true});

			});
		
		cache.main();
		var offset = (451 - $('#big_image').height()-$('#image_title').height())/2;
		
		$('#big_image').parent().css("padding-top",offset);
		$('#big_image').parent().css("height",451-offset);

		$('#right.images').css('display','none');
		$('#right.images').css("visibility","visible");
		$('#right.images').fadeIn(1000);
		//preload images
		$('#container').append('<div style="display:none;" id="hiddensie"><img src="/images/bottom.png" alt="" /><img src="/images/menu-pos-active.png" alt="" /><img src="/images/rogi_szare.png" alt="" /><img src="/images/rogi_szare.gif" alt="" /><img src="/images/rogi_wew_szare.png" alt="" /><img src="/images/rogi_wew.png" alt="" /><img src="/images/rogi-active.png" alt="" /><img src="/images/rogi-ie-bottom.gif" alt="" /><img src="/images/rogi-ie-top.gif" alt="" /><img src="/images/rogi.png" alt="" /><img src="/images/rogi.gif" alt="" /><img src="/images/span_rogi_contact.png" alt="" /><img src="/images/span_rogi.png" alt="" /><img src="/images/top.png" alt="" /></div> ')
		$('#hiddensie').remove();
  });

 $(window).unload(function(){
	 $('#right.images').fadeOut('slow');
 });	
