$(document).ready(function(){	
	
	$("#nav li").hover(
  			function(){
  				$(this).contents('ul').css("left","0px");
  				$(this).contents('ul#d1').stop().animate({height: "60", paddingBottom: "25px", cursor: "pointer"},300);
  				$(this).contents('ul#d2').stop().animate({height: "140", paddingBottom: "25px"},300);
  				$(this).contents('ul#d3').stop().animate({height: "60", paddingBottom: "25px"},300);
  			},
  			function(){
  				$(this).contents('ul#d1').animate({height: "0", paddingBottom: "0px"},200);
  				$(this).contents('ul#d2').animate({height: "0", paddingBottom: "0px"},200);
  				$(this).contents('ul#d3').animate({height: "0", paddingBottom: "0px"},200);
  			}
  		);
  $("input.data").focus(function(){
	  	$(this).val('');
	});		
  	
});