	
function showSubCats(catid)
{
	$("li[id*=cat-]:visible").hide();
	$("li[id*=cat-" + catid + "-]:hidden").show();
}

$(document).ready(function(){

  Shadowbox.init();
	
		// toggles the slickbox on clicking the noted link 
	$('a#toggler').click(function() {
		$('#cont-toogle').slideToggle(1000);
		return false;
	});
	
});

