$(document).ready(function(){

	$('.galleryList li').hover(function(){
		var imageUrl = $(this).find('a').attr('href');
		$('.temporaryPreview img').css({'display':'inline'}).attr('src', '').attr('src', imageUrl);
		$('.temporaryPreview').fadeIn(250);
		var imageHandle = new Image;
		imageHandle.src = imageUrl;
		if ( !imageHandle.complete ){
			$('.temporaryPreview img').fadeOut(0).load(function(){
				$('.temporaryPreview img').fadeIn('slow');
			});
		}		
	}, function(){
		$('.temporaryPreview img').css({'display':'none'}).attr('src', '');
		$('.temporaryPreview').fadeOut(0);
	});
	
	$('a.backLink').click(function(){
		$('div.navigation a').each(function(){
			if ( $(this).attr('href') == '#realizacje' ){
				$(this).trigger('click');
			}
		});
	});

});
