jQuery(document).ready(function() {

	jQuery('.promo-content .right').cycle({ 
	    fx:     'scrollRight', 
	    speed:  'fast', 
	    timeout: 8000,
	    pauseOnPagerHover: true,
	    next:   '#cyclenext', 
	    prev:   '#cycleprev',
	    pager: '.promo-content .left',
	    pagerAnchorBuilder: function(idx, slide) {
	                            var src = jQuery(slide).eq(0).attr('id');
	                            return '<h5><a href="#" title="' + src + '">' + src + '</a></h5>';
	                            
	                            //return '<h5><a href="#" title="'+src+'">'+src+'</a></h5>';
	    }
	    
	});
	
	jQuery(".tabbar").clone().appendTo('#content');
	
	jQuery("a.active_category").parent().addClass('current-cat');
	jQuery("p:empty").remove();
	//jQuery("a.active_category").parent().addClass('current-cat');
	
});
