// JavaScript Document
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		speed: 4500
	});
});

$(document).ready(function() {
	$("#bot").click(function(){							
		var alto = document.getElementById('pes_noti').style.height;
		if(alto == '350px'){
			$("#pes_noti").animate({
			top: "0px",
			height: "47px"        
			}, 1500 );
		}else{
			$("#pes_noti").animate({
			top: "-303px",
			height: "350px"        
			}, 1500 );
		}
	});
	
});

$(document).ready(function() {
	$("#bot_bol").click(function(){							
		var alto = document.getElementById('pes_bol').style.height;
		if(alto == '170px'){
			$("#pes_bol").animate({
			top: "0px",
			height: "47px"        
			}, 1500 );
		}else{
			$("#pes_bol").animate({
			top: "-130px",
			height: "170px"        
			}, 1500 );
		}
	});
	
});

$(document).ready(function() {
	$("#bot_info2").click(function(){							
		var alto = document.getElementById('pes_info2').style.height;
		if(alto == '300px'){
			$("#pes_info2").animate({
			top: "0px",
			height: "47px"        
			}, 1500 );
		}else{
			$("#pes_info2").animate({
			top: "-253px",
			height: "300px"        
			}, 1500 );
		}
	});
	
});


