$(document).ready(function(){
	$("#arrow").click(function(){ 
		$("#arrow").fadeOut(500);
		if($('#banner').attr('class') == 'b-big') {
			$("#banner").animate({ 
				height: "200px"
			}, 1500, function() {
						setCookie('true'); 
						$('#arrow').attr('class', 'large');
						$("#arrow").fadeIn(500);
						return false;
					}
			);
			$('#banner').attr('class', 'b-small');
		 }
		 else {
			$("#banner").animate({ 
				height: "439px"
			}, 1500, function() {
						setCookie('false'); 
						$('#arrow').attr('class', 'small');
						$("#arrow").fadeIn(500);
						return false;
					}
			);
			$('#banner').attr('class', 'b-big');
		 }
		 return false;
	});	
	

	$('a[@rel*=lightbox-fotos]').lightBox();
	$('a[@rel*=lightbox-link]').lightBox();
});