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

$(document).ready(function(){

	$(".scroll").scrollable({ circular: true }).autoscroll({ autoplay: true, interval:5000 });

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


