$(document).ready(function(){
	$('#logo').hover(function(){
		$(this).stop().animate({
		top: '-5px'
		}, 300);
	}, function(){
	$(this).stop().animate({
		top: '0'
		}, 300);
	});			
	$('#logo').click(function(){
		document.location.href = '/';
	});			
});
