$(document).ready(function() {
	$(".imgOver").hover(function(){
 		theID = $(this).html();
		$(this).children().css("background-position","bottom");
	}, function(){
		$(this).children().css("background-position","top");
	});
});

function abref(g,f) {
	$.get("_ajax.php",{tela:'fotog',idg:g,idf:f}, function(r){ $("#fotoG").html(r); });
}
function ajaxLink(div,pag) { $.get(pag,{qazc:'1'}, function(retorno){ $("#"+div).html(retorno); }); }

function trocaFotos(idg) {
	$.get("_ajax.php",{tela:'fotolist',idg:idg}, function(r){ $("#fotoList").html(r); });
}