// JavaScript 

$(function() {
	   $('#container img').animate({
		"opacity" : 1
		});
	   
	   $('#container img').hover(function(){
		$(this).animate({ "opacity" : .5 });
		}, function() {
		$(this).animate({ "opacity" : 1 });	
		});
	});
