var counter=300;
$(document).ready(function(){
	
	/* This code is executed after the DOM has been completely loaded */
	
	$('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();
	});

	$('nav ul li').hover(function(){
		$(this).stop(true,false);
		$(this).animate({top: "-=3px"},50);
		$(this).animate({top: "+=2px"},50);
		$(this).animate({top: "-=1px"},50);
		$(this).children().css({'background-color':'#f8f8f8','color':'#008EB0'});
	},function(){
		$(this).animate({top: "0px"},150);
		$(this).children().css({'background-color':'transparent','color':'#333333'});		
	}); 

	//$('a,p,h2').draggable({stop: function(event,ui){$(this).css('z-index','1')}});

});
