// JavaScript Document
$(function(){
		/*****************************/
		/*****************************/
		$("#carosel").jCarouselLite
		({
			btnPrev: ".prev",
			btnNext: ".next",
			visible: 4,
			start:1,
			mouseWheel: true,
			speed:350
		})
		
		$("#carosel").css('width','470px')
		$("#carosel").css('height','65px')
		$(".lista").css('width','auto')		
		
		$("#carosel img").click(function(imagem){
     		
			var a = $(this).attr("src");
			$(".produto_info img").fadeOut('slow',function(){
				$(".produto_info img").attr("src",a);
				$(".produto_info img").fadeIn('slow',function(){
						$(this).attr('style','height:125px;width:auto')
						var largura = $(this).width();
						
						if(largura > 230)
						{
							$(this).attr('style','height:auto;width:230px')
						}
					})
		}),
			
			$(".produto_info").show('slow'),
			$(".txt_produto").show('slow')
			
			var promo = $("#promo").val();
			var prod  = $(this).attr("alt");

			$(".txt_produto").fadeOut('slow',function(){
						$(".txt_produto").html("<img src='imagens/ajax-loader.gif' />")
				})
			
			$(".txt_produto").fadeIn('slow')
			
			$.post("index.php",{prod: prod, promo: promo},function(pegar_dados){
						complete:$(".txt_produto").fadeOut('slow',function(){
								$(".txt_produto").fadeIn("slow").html(pegar_dados)														
					})
			})
		 })
			 
		$("#carosel li").css('height','auto')
		$("#carosel li img").css('clear','both')
		
		/***** Amplia imagem *****/
		$('.produto_info img').toggle(
				function()
				{
					$(this).attr('title','Clique para reduzir')
					$(this).animate({
						height:'170px'
					})
				},
				function()
				{
					$(this).attr('title','Clique para ampliar')
					$(this).animate({
						height:'125px'
					})
				}
		)
		/*************************/
		
		/*****************************/
		/*****************************/
	})
