// JavaScript Document

$(document).ready(function() {
	 $('img').hover(function() {
		if ($(this).attr("big")) {
			$(this).css({'cursor':'pointer'});
		}
	});		   

   $('img').click(function() {
		if ($(this).attr("big")) {
			$('#blackBack').fadeIn(500);
			var tSrc = ($(this).attr("big"));
			imagefit("#placeholder", "#image-buffer", tSrc, 1.6);	
			$('#BU').html($(this).attr("alt"))
		} // if big
	}); // end click

	$('#imgMenu a#close').click(function() {
		//alert ('close');
		$('#blackBack').fadeOut(300);
	});

}); // end document.ready

		
		
$(window).resize(function(){			  
});