// JavaScript Document
$(function(){
	$("#banner img").hover(
	function(){
		$(this).fadeTo(250, 0.5);
	},
	function(){
	$(this).fadeTo(250, 1);
}
);
});
