// JavaScript Document



jQuery(document).ready(function() {
	  
	  var toggle = 0;
	  $('.contenedor-paises').hide();
	  
	  $('#selPais a').click(
	  		function(){
				if(toggle==0){
					$('.contenedor-paises').show('slow');
					toggle = 1;
				}else{
					$('.contenedor-paises').hide('slow');
					toggle = 0;
				}
			}
	  );

          $('.submit').click(function(){
                var valor = $('input[name="busqueda"]').attr('value');
               //document.location.href="http://www.google.com.uy/search?q="+valor+"+site%3Ahttp%3A%2F%2Fwww.gachamigueros.com&hl=es&biw=1135&bih=513&num=10&lr=lang_es&ft=i&cr=&safe=images";
			   document.location.href="../../controller/search.php?q="+valor;
          });
		  $('input[name="busqueda"]').focus(function(){
			  $(this).attr('value', '');;
		  });
  });
