// JavaScript Document











function showImage(src)



{



var largeImage = new Image();







$(largeImage).load(function()



             	{



                	$('#bigimage').css({



										  backgroundImage:"url("+src+")"



										 ,backgroundPosition:"center center"



										 ,backgroundRepeat:"no-repeat"



										});



					



					



                });











$(largeImage).attr("src", src);                                                                      



}











$(function (){



			



			$('.item').click(function() {





									  if ($('#cont_cover').height()<$('#item_cont').height())



									  $('#cont_cover').height($('#item_cont').height()); 



									  $('#cont_cover').fadeIn('fast');

										$('#bigimage').css({
														  backgroundImage:"none"

														});


									location.hash=$(this).attr("ref");
									  showImage('/photos/'+$(this).find('.photo').attr("ref"));
									
									  $('#bigtitle').html($.trim($(this).text()));

													

									  $('.hpag').fadeOut('fast');



									  



									  });



			$('#cont_cover').click(function(){



												$('#cont_cover').fadeOut('fast');										

													location.hash="";
													 $('.hpag').fadeIn('fast');

											});



	/*		



			$('#cont_cover').mouseover(function(){ $('#nazad').fadeIn('fast'); });			



			$('#cont_cover').mouseout(function(){ $('#nazad').fadeOut('fast'); });*/

				$('.item[ref="'+location.hash.slice(1)+'"]').click()

			



			});

