$(document).ready(function(){ 
	$('#header .nav ul li a').not('.selected').hover(function(){
	    $(this).animate({backgroundPosition: '0px -10px'}, 200);
	  },
	  function(){
	    $(this).animate({backgroundPosition: '0px 0px'}, 200);
	  }
	);
	
	$('.link').hover(function(){
	    $(this).stop().animate({marginLeft: 10}, 200);
	  },
	  function(){
	    $(this).stop().animate({marginLeft: 0}, 200);
	  }
	);
	
	$('.inp-value').click(function(){
			if (this.value == this.defaultValue) {
				this.value = '';
			}
	})
	.blur(function() {
			if (this.value == '') {
				this.value = this.defaultValue;
			}
	});
});   


