var j = jQuery.noConflict();

j(document).ready(function(){
	j("#openclose").click(function(){
								   
		if(j(".carcasa").is(":visible"))
			{
			j(".carcasa").fadeOut('slow');
			j("#footer").animate({height:'80%'});
			j(".footer-wrapper").fadeIn('slow');
			
			}
			
		else 
			{
			j(".carcasa").fadeIn('slow');
			j("#footer").animate({height:'80px'});
			j(".footer-wrapper").fadeOut('slow');
			}
			
		//j("#footer-wrapper").fadeToggle();
		//j("#footer").toggleClass("activefooter");
		
		//j("#footer").animate({height:'70%'});
		
		
		
		
		return false; //Prevent the browser jump to the link anchor
			
	});
});


j(document).ready(function(){
	j("#openclose2").click(function(){
									
		if(j(".carcasa").is(":visible"))
			{
			//j(".carcasa").fadeOut('slow');
			j(".carcasa").hide();
			j(".footer-wrapper").show();
			j("#footer-wrapper2").hide();
			
			//j("#footer").animate({height:'60%'});
//			j(".footer-wrapper").fadeIn('slow');
			}
			
		else
			{
			//j(".carcasa").fadeIn('slow');
			j(".carcasa").show();
			//j("#footer").animate({height:'45px'});
			//j(".footer-wrapper").fadeOut('slow');
			j(".footer-wrapper").hide();
			j("#footer-wrapper2").hide();
			}
			
		j("#footer").toggleClass ('activomovil');						
		return false; //Prevent the browser jump to the link anchor
			
	});
});

j(document).ready(function(){
	j("#telefono2").click(function(){
									
		if(j(".carcasa").is(":visible"))
			{
				j(".carcasa").hide();
				j("#footer-wrapper2").show();
				j(".footer-wrapper").hide();
			}
			
		else
			{
				j(".carcasa").show();
				j("#footer-wrapper2").hide();
				j(".footer-wrapper").hide();
			}
		
		j("#footer").toggleClass ('activomovil');	
		return false; //Prevent the browser jump to the link anchor
			
	});
});



