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