jQuery(function($) {
  var tcat = $('a.acc');
	if(tcat.length){
		tcat.click(function(){
			$(this).parent().children('ul').slideToggle();
			
		});
	}
  var sld = $('#slide');
	if(sld.length){
		$('#slide').cycle()
	}
});



