/*
Cria a animacao do menu principal
*/
$('document').ready(function()
{
	var flag = false;
	$('.sub').mouseenter(function()
	{
		flag = true;
		$('.seletor').stop().animate({top:'225px'});
		$('#header #menu').stop().animate({height: '215px'});		
	});	
	$('#header #menu').mouseleave(function()
	{
		if (flag)
		{
			flag = false;
			$(this).stop().animate({height: '32px'}, 500, function(){$('.seletor').css('top','0px');$('.seletor').stop().animate({top:'-5px'},250);});
		}
	});	
	
	/*Cria o autocomplete*/
	$("#testinput").autocomplete("search.php", {
		width: 200,
		selectFirst: false
	}).result(function(event, item, formatted) {
	  $(this).val(formatted);
      $(this).parents().find("form[name='formcidade']").submit(); 
  }); 
  $("#testinputnome").autocomplete("search-nome.php", {
		width: 200,
		selectFirst: false
	}).result(function(event, item, formatted) {
	  $(this).val(formatted);
      $(this).parents().find("form[name='formname']").submit(); 
  }); 
  
  $("select#cidades").change(function()
  {
	  window.location = "busca-lavanderia.php?tipo=3&str=" + $(this).val();
  });
});

function aparece()
{
	alert('Aparece agora');
}
