$(document).ready(function(){		    
	$('.sectors').hide();
	$('.seccli').mouseover(function() {
		$('.sectors').hide();
		$('.cli').show();
	});
	$('.seccan').mouseover(function() {
		$('.sectors').hide();
		$('.can').show();
	});
});