var Geral = {

	__construct: function() {
		_this = Geral;
	}
}

$(document).ready(function(){
	Geral.__construct();
	
	
	$('.rhnasnuvens').hover(
		function(){ $(this).fadeTo('', 0.6) },
		function(){ $(this).fadeTo('', 1) }							
	);
});
