$(document).ready(function() {
	
    $(".MMHomeSliderContainer > ul").tabs({ 
    	fx:{opacity: "toggle"}
    }).tabs("rotate", 5000, true);
	
    
    //Active category (because the categories are static
    if($('#CategoryHeading .BlockContent > h2').length>0){
    	var currentCategoryName = $('#CategoryHeading .BlockContent > h2').text();
    	
    	$("#sdt_menu > li").each(function(index, value) {
    		if($(this).hasClass(currentCategoryName)){
    			$(this).addClass('active');
    		}
    	});
    }
    
});
