$(function(){

		
		$("input,textarea").click(function() {
		$(this).attr("value","");
		});

	$('#nav li a').mouseover(function(){
	
		$(this).animate({paddingRight:15},700);
	
	});
	
	$('#nav li a').mouseout(function(){
	
		$(this).animate({paddingRight:0},500);
	
	});
	
	$('.current').each(function(){
		
		$(this).animate({opacity: 0.5},1500);
		
	});

});