$(document).ready(function() {
	$("img[alphahover='']").mouseover(function () {
 		$(this).fadeTo('slow',1);
	});
	$("img[alphahover='']").mouseout(function () {
 		$(this).fadeTo('slow',0.5);
	});
	$("img[alphahover='']").fadeTo('slow',0.5);
});