$(document).ready(function(){
	
	$("img[alt='Vitrine All Line']").mouseover(function (){
		$("#vitrine_img").attr({
			src: $(this).attr("src")
		})
	});

	$("#btn_left").mouseover(function (){
		$("img[alt='Vitrine All Line']").animate({
			"left":"+=100px"

		},"slow");
	});

	$("#btn_right").mouseover(function (){
		$("img[alt='Vitrine All Line']").animate({
			"left":"-=100px"

		},"slow");
	});
});

//lightbox
$(document).ready(function(){
   $('ul#exemplos li a').lightBox();
});

