$(document).ready(function(){

// Efecto mostrar contenido
$('#info').animate({left:'300px'},600);	
$('#menu a').click(function(){
	a=parseInt($('#menu a').index(this))+1;
	if($('#imagenes').children('div').index($('#imagenes').children('div:visible'))!=a){
		$('#imagenes').children('div:visible').animate({left:'720px'},600,function(){
			$(this).hide();
			$('#imagenes').children('div').eq(a).show().animate({left:'300px'},600);
		});
	}
	return false;
});

// Efecto fondo
$('ul#imagenes_fondo').innerfade({
	speed: 2000,
	timeout: 20000,
	type: 'sequence',
	containerheight: '488px'
});

// Scroll Carpentry Division
$("#bajar").hover(function(){ 
	c=$(".scrolling").parents("div").height();
	m=0-($(".scrolling").height())+c-0;
	a=($(".scrolling").height()/c)*3000;			
	if(c<$(".scrolling").height())$(".scrolling").animate({top: m+'px'},a);
},function(){$(".scrolling").stop();});

$("#subir").hover(function(){ 
	c=$(".scrolling").parents("div").height();
	a=($(".scrolling").height()/c)*3000;			
	if(c<$(".scrolling").height())$(".scrolling").animate({top: '0px'},a);
},function(){$(".scrolling").stop();});

$(".scrollbutton>img").hover(function(){$(this).attr("src", "img/circulo.png");},function(){$(this).attr("src", "img/circulo.png");});	

$("#bajar").click(function(){ 
	c=$(".scrolling").parents("div").height();
	m=0-($(".scrolling").height())+c-0;
	if(c<$(".scrolling").height())$(".scrolling").stop().animate({top: m+'px'}, 300);
});		

$("#subir").click(function(){if(c<$(".scrolling").height()){$(".scrolling").stop().animate({top: '0px'}, 300);}});

// Scroll Servicios
$("#bajar2").hover(function(){ 
	c=$(".scrolling2").parents("div").height();
	m=0-($(".scrolling2").height())+c-0;
	a=($(".scrolling2").height()/c)*3000;			
	if(c<$(".scrolling2").height())$(".scrolling2").animate({top: m+'px'},a);
},function(){$(".scrolling2").stop();});

$("#subir2").hover(function(){ 
	c=$(".scrolling2").parents("div").height();
	a=($(".scrolling2").height()/c)*3000;			
	if(c<$(".scrolling2").height())$(".scrolling2").animate({top: '0px'},a);
},function(){$(".scrolling2").stop();});

$(".scrollbutton2>img").hover(function(){$(this).attr("src", "img/circulo.png");},function(){$(this).attr("src", "img/circulo.png");});	

$("#bajar2").click(function(){ 
	c=$(".scrolling2").parents("div").height();
	m=0-($(".scrolling2").height())+c-0;
	if(c<$(".scrolling2").height())$(".scrolling2").stop().animate({top: m+'px'}, 300);
});		

$("#subir2").click(function(){if(c<$(".scrolling2").height()){$(".scrolling2").stop().animate({top: '0px'}, 300);}});

});




