function listStarCatsTabs(id) {
	$("[title=hotel_1]").addClass('displayNone');
	$("[title=hotel_2]").addClass('displayNone');
	$("[title=hotel_3]").addClass('displayNone');
	$("[title=hotel_4]").addClass('displayNone');
	
	$('[title=hotel_'+id+']').removeClass('displayNone');
	
	$('#h_1').removeClass('active');
	$('#h_2').removeClass('active');
	$('#h_3').removeClass('active');
	$('#h_4').removeClass('active');
	
	$('#h_'+id).addClass('active');
	return false;
}
