// JavaScript Document

	$(function() 
	{ 		
		$("#overlayModalCompra").overlay(
		{ 	 
			expose: {
				color: '#ccc', 
				opacity: 0.7
			},
			onBeforeLoad: function() 
			{ 
				// Flash de la modal como comprar:
				$("#modalCompraFlash").flashembed(
				   {src: "/themes/sprayette/img/home/banners/modal.swf", wmode: 'transparent'}
				);			
			}
		});

		// Trigger de modalCompraFlash
		if ( $('#modalImg').length )
		{
			$("#modalImg").click(function() 
			{
				$("#overlayModalCompra").overlay().load();
			});	
		}			
		
		// Funcion de buscar
		$("#buscar").keypress(function(e){
			if(e.which==13) 
			{
				document.location = '/resultado/?b=' + $("#buscar").val();
				return false;
			}				
		});
		
		$("#buscar").autocomplete('/include/http/busqueda/search.php', {
			width: 162,
			multiple: false,
			matchContains: true
		});	
		
		$("#buscar-boton").click(function(e){
			document.location = '/resultado/?b=' + $("#buscar").val();
		});			
	});