function aminate_imgs(where){
jQuery( document ).ready( function($) {
	$( where ).mouseover( function() {
		$( this ).children( "img" ).stop( true, true ).animate({
			opacity: 0.4
		}, 200, "swing", function() {
			$( this ).animate({
				opacity: 1
			}, 400 );
		});
	});
});
}//aminate_imgs

try { document.execCommand('BackgroundImageCache', false, true);} catch(e) {}

