﻿// <![CDATA[

$(document).ready(function() {


	/* Exibir a thumb média do produto */
	$('.thumb_over').hover(function() {
		imagem = $(this).attr('id');
		grande = $(this).attr('href');
		$('.produto_capa').html('<a href="'+grande+'" class="capa_produto"><img src="'+imagem+'" /></a>');
	});

	/* Pesquisa Avançada */
	$('a.p_avancada').click(function() {
		$('div#pesquisa_avancada').toggle('slow', function() {
			if($.browser.msie)
				this.style.removeAttribute('filter'); 
		});
		return false;
	});

	$('form#frm_pesquisa').submit(function() {
		var campo = $('input#texto').val();
		
		if ( campo.length < 3 )
		{
			alert('O campo de pesquisa deve ter no mínimo 3 caracteres');
			return false;
		}
	});

	/* Pesquisa de produtos */
	$('input.input_pesquisa_produto').focus(function() {
		if (this.value==this.defaultValue)
			this.value='';
	});
	$('input.input_pesquisa_produto').blur(function() {
		if (this.value=='')
			this.value = this.defaultValue;
	});
	
	//Finalizar Carrinho ( Caixa direita superior )
	$('input#finalizar_carrinho').click(function() {
		goto = $(this).attr('title');
		window.location = goto;
	});
});

// ]]>
