$(document).ready(function(){
	/* This code is executed after the DOM has been completely loaded */
	
	$('li a,footer a.up, ').click(function(e){
										  
		// If a link has been clicked, scroll the page to the link's hash target:
		
		$.scrollTo( this.hash ||0, 1500);
		e.preventDefault();
	});

});



$(function() {
			$('ul').hover(function(){
				$(this).animate({marginLeft:'-50px'},{queue:false,duration:500});
			}, function(){
				$(this).animate({marginLeft:'-370px'},{queue:false,duration:500});
			});
		});
		
		

