$(document).ready(function(){
	PageInit();
	
	// Hide all sub categories
	$(".sub_level").hide();
	
	$(".top_level").click(function(e) {
		if ($('.child_of_' + this.id).length > 0) {
			// Has children
			// Hide all sub categories
			$(".sub_level").hide();
			$('.child_of_' + this.id).show();
			e.preventDefault();
		}
	});
});