// JavaScript Document
$(document).ready(function() {
						   
	// Carrossel de produtos
	$("#produtos").jCarouselLite({
		btnNext: "#next",
		btnPrev: "#prev",
		vertical: true,
		speed:1000
	});
	
	// Iniciando prettyphoto
	$("a[rel^='prettyOverlay'],a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal', 
		padding: 40, 
		opacity: 0.85, 
		showTitle: true, 
		allowresize: 1 	
	});
	
});


