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({timeout: 8000})
	}
  var sld = $('#slide2');
	if(sld.length){
		$('#slide2').cycle({timeout: 8000})
	}
});


