$(document).ready(function(){
	$("a img").hover(function(){
		$(this).parent().addClass('imgHover');
		$(this).animate({opacity:0.6},100);
	},
	function(){
		$(this).animate({opacity:1.0},100,function(){$(this).parent().removeClass('imgHover');});
	}
	);
	$("input.searchBt").hover(function(){
		$(this).addClass('imgHover');
		$(this).animate({opacity:0.6},100);
	},
	function(){
		$(this).animate({opacity:1.0},100,function(){$(this).removeClass('imgHover');});
	}
	);
});
