// JavaScript Document
$(document).ready(function(){
	$('#botonMundoVerde a').mouseover(function(){
		$('#botonMundoVerde img').attr('src','images/boton_saberrollover.png');										  
	});
	$('#botonMundoVerde a').mouseout(function(){
		$('#botonMundoVerde img').attr('src','images/boton_saber.png');										  
	});
	
	$('#botonSame a').mouseover(function(){
		$('#botonSame img').attr('src','images/boton_notasrollover.png');										  
	});
	$('#botonSame a').mouseout(function(){
		$('#botonSame img').attr('src','images/boton_notas.png');										  
	});
	
	$('#textoProduccion a').mouseover(function(){
		$('#textoProduccion img').attr('src','images/boton_procesorollover.png');										  
	});
	$('#textoProduccion a').mouseout(function(){
		$('#textoProduccion img').attr('src','images/boton_proceso.png');										  
	});
	
	$('#textoProductos a').mouseover(function(){
		$('#textoProductos img').attr('src','images/boton_catalogorollover.png');										  
	});
	$('#textoProductos a').mouseout(function(){
		$('#textoProductos img').attr('src','images/boton_catalogo.png');										  
	});
	
	$('#botonServicios a').mouseover(function(){
		$('#botonServicios img').attr('src','images/boton_serviciosrollover.png');										  
	});
	$('#botonServicios a').mouseout(function(){
		$('#botonServicios img').attr('src','images/boton_servicios.png');										  
	});
	
	$('#textoCompra a').mouseover(function(){
		$('#textoCompra img').attr('src','images/boton_valorollover.png');										  
	});
	$('#textoCompra a').mouseout(function(){
		$('#textoCompra img').attr('src','images/boton_valo.png');										  
	});
	
	$('#slideshow').cycle({
		fx: 'fade',
		prev: '#prev',
        next: '#next',
		speed: 800
	});
});
