$(document).ready(function(){
    
    $(".clearMe").focus(function(){
	  	$(this).val('');
	});	
    
    $("#open").click(function(){
      $("#contactDB").animate( { height:"180px" });
      $(this).addClass('on');
    });

    $("#close").click(function(){
      $("#contactDB").animate( { height:"0" });
      $("#open").removeClass('on');
    });

  });