$(function () {
	$('#header img').hover(function() {
		$(this).stop().fadeTo('normal', 0.7);
	}, function() {
		$(this).stop().fadeTo('normal', 1);
	});
});
