jQuery(document).ready(function($){
	$('#main-menu ul li').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
	$(".boxshadow #main-menu li.page_item").hover(
	function(){
		$(this).stop().animate({boxShadow: '3px 3px 3px', top: 3}, 'fast')
	},
	function(){
		$(this).stop().animate({boxShadow: '7px 7px 10px', top: 0}, 'fast')
	});
});
