$(document).ready(function(){	
	
	$(":text").labelify();	
	
	$('.campo').focus(function(){
		$(this).css({background: '#f6f6f6'});
	});
	
	$('.campo').blur(function(){
		$(this).css({background: '#e5e5e5'});
	});
	
	$('.slideshow').cycle({
		fx: 'fade',
		speed: 2000
	});
	
	$("ul#thumb_produto li a").click(function(){		
		
		$("ul#thumb_produto li a").removeClass();									
		
		$(this).addClass('active');
		
		var img_big = $(this).attr("href");

		$("#imagem_produto").find('#imagem').fadeOut("normal", function(){				
			$(this).empty().html('<img src="'+ img_big +'" height="409" />').fadeIn();								
		});
		
		// expande a atual foto média exibida
		$("#lupa a").attr("href", img_big);
		
		return false;		
	});
	$('#lupa a').lightBox();
	//$('#lista_imprensa .imagem a').lightBox();
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal',
		padding: 40,
		opacity: 0.35,
		showTitle: false,
		allowresize: true,
		counter_separator_label: ' de '
	});	
	
});