$(document).ready(function(){
	$('#ofertabtn').mouseenter(function(){
		$('.mas-oferta').animate({ top:"0" },200);
		$('.oferta-color').animate({ opacity:"1" },300);
		return false;
	});
	$('#ofertabtn').mouseleave(function(){
		$('.mas-oferta').animate({ top:"-66" },200);
		$('.oferta-color').animate({ opacity:"0" },300);
		return false;
	});
	
	$('#logrosbtn').mouseenter(function(){
		$('.mas-logros').animate({ top:"0" },200);
		$('.logros-color').animate({ opacity:"1" },300);
		return false;
	});
	$('#logrosbtn').mouseleave(function(){
		$('.mas-logros').animate({ top:"-66" },200);
		$('.logros-color').animate({ opacity:"0" },300);
		return false;
	});
});


$(document).ready(function() {
    $('.homebanners').cycle({
		fx: 'scrollHorz',
		easing: 'easeInOutExpo',
		timeout: '8000',
		speed: '1000',
		next: '#next',
		prev: '#prev'
	});
});
