// JavaScript Document
$(function(){
			
	//mostra legenda qndo mouse é passado sobre o banner e esconde qndo sai do banner
	$("#bannerIndex").hover(
		function(){
			$("#legendaBannerIndex").clearQueue().animate({
				top : 371	
			})
		},function(){
			$("#legendaBannerIndex").clearQueue().animate({
				top : 450	
			});
		}
	)

	$(".fotoDestaqueGrande, fotoDestaqueMedia").hover(
		function(){
			$("#legendaFoto").clearQueue().animate({
				top : 321	
			})
		},function(){
			$("#legendaFoto").clearQueue().animate({
				top : 450	
			});
		}
	)
	
	$(".lateral").css({'width':'350px','top' : '100px','left' : '-500px'});
	$(".fotoDestaqueMedia").hover(
		function(){
			
			$("#legendaFoto").clearQueue().animate({
				top : 100,
				left:0
			})
		},function(){
			$("#legendaFoto").clearQueue().animate({
				//top : 450,
				left:-500	
			});
		}
	)
	
	//inicia a lista de fotos da galeria oculta
	$("#galeriaBannerIndex").css({'right':'-145px', 'cursor':'pointer'});
	
	$("#bannerIndex").hover(function(){
		$("#galeriaBannerIndex").clearQueue().animate({
				"right": "0"
			});
		}, function(){
		$("#galeriaBannerIndex").clearQueue().animate({
				"right": "-145px"
			});
		}
	)

	
})
