$(document).ready(function() {
	$('#cat1').bind("mouseover", {"id":"1"}, carregaItem);
	$('#cat2').bind("mouseover", {"id":"2"}, carregaItem);
	$('#cat3').bind("mouseover", {"id":"3"}, carregaItem);
	$('#cat4').bind("mouseover", {"id":"4"}, carregaItem);
	$('#cat5').bind("mouseover", {"id":"5"}, carregaItem);
});

function carregaItem(event) {
	$.getJSON('commons/imagens_index.php', 
		{"idDiv" : event.data.id},
		function(json) {			
			$('#Layer .catImagem').html(json.imagem);
		}
	);
}

function carregaCarosel(event) {
	$.getJSON('commons/carosel_index.php', 
		{"idDivCarosel" : event.data.id},
		function(json) {			
			$('#Layer_ .DestaqueTextT').html(json.assunto);
			$('#Layer_ .DestaqueText').html(json.titulo);
			$('#Layer_ .Text').html(json.descricao);
			$('#Layer_ .leiaMais').html(json.url);
		}
	);
}

function carregaPrimeiro(id) {
	$.getJSON('commons/carosel_index.php', 
		{"idDivCarosel" : id},
		function(json) {			
			$('#Layer_ .DestaqueTextT').html(json.assunto);
			$('#Layer_ .DestaqueText').html(json.titulo);
			$('#Layer_ .Text').html(json.descricao);
			$('#Layer_ .leiaMais').html(json.url);
		}
	);
}
