$(document).ready(function(){
// ########### start: $(document).ready ###########

$('#logo').hover(function(){
		$(this).stop().fadeTo("slow", 0.6);
	},function(){
   		$(this).stop().fadeTo("slow", 1.0);
	});

// ########### end: $(document).ready ###########
});

