$(function() {


$(".empresa").click(function () {
	$('#home_conceito').animate({ width: '0px' }, "slow");
	$('#home_produtos').animate({ width: '0px' }, "slow");
	$('#home_atendimento').animate({ width: '0px' }, "slow");
	$('#home_contato').animate({ width: '0px' }, "slow");
	$('#home_empresa').animate({ width: '825px' }, "slow");
})

$(".conceito").click(function () {
	$('#home_empresa').animate({ width: '0px' }, "slow");
	$('#home_produtos').animate({ width: '0px' }, "slow");
	$('#home_atendimento').animate({ width: '0px' }, "slow");
	$('#home_contato').animate({ width: '0px' }, "slow");
	$('#home_conceito').animate({ width: '825px' }, "slow");
})

$(".produtos").click(function () {
	$('#home_empresa').animate({ width: '0px' }, "slow");
	$('#home_conceito').animate({ width: '0px' }, "slow");
	$('#home_atendimento').animate({ width: '0px' }, "slow");
	$('#home_contato').animate({ width: '0px' }, "slow");
	$('#home_produtos').animate({ width: '825px' }, "slow");
})

$(".atendimento").click(function () {
	$('#home_empresa').animate({ width: '0px' }, "slow");
	$('#home_conceito').animate({ width: '0px' }, "slow");
	$('#home_produtos').animate({ width: '0px' }, "slow");
	$('#home_contato').animate({ width: '0px' }, "slow");
	$('#home_atendimento').animate({ width: '825px' }, "slow");
})

$(".contato").click(function () {
	$('#home_empresa').animate({ width: '0px' }, "slow");
	$('#home_conceito').animate({ width: '0px' }, "slow");
	$('#home_produtos').animate({ width: '0px' }, "slow");
	$('#home_atendimento').animate({ width: '0px' }, "slow");
	$('#home_contato').animate({ width: '825px' }, "slow");
})
	
	
	

$("#cont_internas #box_miniaturas .jcarousel-skin-tango img").css("opacity","0.5");
		
// ON MOUSE OVER
$("#cont_internas #box_miniaturas .jcarousel-skin-tango img").hover(function () {
										  
// SET OPACITY TO 100%
$(this).animate({
opacity: 1.0
}, "fast");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).animate({
opacity: 0.5
}, "fast");
});

// ON MOUSE OVER
$("#cont_internas #box_miniaturas .jcarousel-skin-tango img").click(function () {
var caminho = $(this).attr('src');

	$("#cont_internas #box_img img").fadeTo("fast", 0.1, function(){
		
		$("#cont_internas #box_img img").attr({ src: caminho });
		
	$("#cont_internas #box_img img").fadeTo("fast", 1.0, function(){
												});
									});
});
	
	
	
	

});
