$(document).ready(function() {
   
   
   $("#gallery img").fadeTo("fast",0.8);
   
   $('#gallery img').hover(function() {
  		$(this).fadeTo("fast",1.0).addClass("phOvr");
	}, function() {
  		$(this).fadeTo("normal",0.8).removeClass("phOvr");
	});
   
   $('#gallery a').lightBox(); 
   
}); 
