$(document).ready(function() {
	$("#topContents2_01 #beleza_info").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#topContents2_01 #beleza_info_table").css("display","none");
	$("#topContents2_01 #beleza_info").click(function(){
		$(this).next().slideToggle("fast");
		});
});

