//scroll the message box to the top offset of browser's scrool bar
$(window).scroll(function(){
	$('#logo').animate({top:$(window).scrollTop()+50+"px" },{queue: false, duration: 150});
	$('#menu').animate({top:$(window).scrollTop()+45+"px" },{queue: false, duration: 150});
});

