$(window).bind('load', function() {
		jQuery('#nav > a > img[id!="logo"]').hover(
			   // hover state
			 function() {
				   jQuery(this).css('opacity', 0.5);
			   },
			   // back to off
			   function() {
				   jQuery(this).css('opacity', 1.0);
				   });
	});
