$(function() {
	  $('#menu1').mouseover(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/index2.png'); });
	  $('#menu1').mouseout(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/index.png'); });
	  
	  $('#menu2').mouseover(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/services2.png'); });
	  $('#menu2').mouseout(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/services.png'); });
	  
	  $('#menu3').mouseover(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/about2.png'); });
	  $('#menu3').mouseout(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/about.png'); });
	  
	  $('#menu4').mouseover(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/contact2.png'); });
	  $('#menu4').mouseout(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/contact.png'); });
	  
	  $('#menu5').mouseover(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/help2.png'); });
	  $('#menu5').mouseout(function(event) { $(this).attr('src','http://www.signature.eu.com/images/menu/help.png'); });
	  
	  $('.menu-parent').mouseover(function() { $(this).children('.submenu').stop(); $(this).children('.submenu').animate({height: '209px', top:'-209px'},'fast'); });
	  $('.menu-parent').mouseout(function() {$(this).children('.submenu').stop(); $(this).children('.submenu').animate({height: '0px', top:'0px'},'fast','linear',function() { $(this).css('display','none'); }); });
	  
	  $('#menu4').click(function() {$('#contact-form').slideDown('slow');});
	  
	  $('.contact-text, .contact-area').each(function() { $(this).val($(this).attr('default')); });
	 
	  
	  $('#contact-close').click(function() {$('#contact-form').slideUp('slow'); });
	  
	     
	   $('#contact-reset').click(function() {
		  $('.contact-text, .contact-area').each(function() { $(this).val($(this).attr('default')); });
		  
	   });
	   
	   $('.contact-text, .contact-area').focus(function() { 
		  if($(this).val() == $(this).attr('default')) {
		  	$(this).val('');
		  }
		});
	   
	   $('.contact-text, .contact-area').focus(function() { 
		  if($(this).val() == $(this).attr('default')) {
		  	$(this).val('');
		  }
		});
	   
	   $('.contact-text, .contact-area').blur(function() { 
		  if($(this).val() == '') {
		  	$(this).val($(this).attr('default'));
		  }
		});
	   
	   $('#contact-send').click(function() {
		  $('#contact-status').html('Sending...');
		  var data = {
			  urlVar: $('[name=urlVar]').val(),
			  emailVar: $('[name=emailVar]').val(),
			  contactVar: $('[name=contactVar]').val(),
			  telVar: $('[name=telVar]').val(),
			  budgetVar: $('[name=budgetVar]').val(),
			  projectVar: $('[name=projectVar]').val()
		  };
		  
		  $.post('http://www.signature.eu.com/php/contact.php',data,function(d) { $('#contact-status').html('Sent'); 
																									   			window.setTimeout(function() {
				$('#contact-form').hide(600);
				$('.contact-text, .contact-area').each(function() { $(this).val($(this).attr('default')); });		
				$('#contact-status').html(''); 
																																					 			 },2000);
			
			});
		  
	   });
			 });