jQuery(document).ready (function () {
	/* Cortina */
	jQuery (window).scroll(function () {
		
		redimensionaDialogo ();
		
		posY = document.body.scrollTop + document.documentElement.scrollTop;
		jQuery('#dialogo').animate({
			marginTop: posY - 10
		}, {duration: 700, queue: false, easing:'easeOutBounce'});
	});
	
	jQuery('.clientes li a').mouseover (function () {
		jQuery(this).find('span').stop().animate({
			opacity: '1'
		},'slow');
	}).mouseout (function () {
		jQuery(this).find('span').stop().animate({
			opacity: '0'
		},'slow');
	});
	
	 jQuery('.carrosel').roundabout();
});
document.onkeyup=function(e){
	var teclaPressionada = e.which;
	
	switch (teclaPressionada) {
		case 39: {
			jQuery('#btSlideDireita').click();
			break;
		}
		case 37 : {
			jQuery('#btSlideEsquerda').click();
			break;
		}
	}
}
