jQuery(function() {
    jQuery("#thebox").hide();

	jQuery("#sendmeform").keyup(function() {
	     jQuery('.header33').animate({
           width: '20%',
           height: '20%'

        },2000);
        jQuery(".hideme").hide();

		 jQuery.post("http://www.m-t-a-w.com/wp-content/images/search1.php", $("#sendmeform").serialize(),
	  	 function(data){
         jQuery("#thebox").show().stop();
		 jQuery("#thebox").html(data);
    });
    return false;
    });
    jQuery("#sendmeform").submit(function() {

		 jQuery.post("http://www.m-t-a-w.com/wp-content/images/search1.php", $("#sendmeform").serialize(),
	  	 function(data){
         jQuery("#thebox").show().stop();
		 jQuery("#thebox").html(data);
   });

  return false;
});
});
