$(document).ready(function() {

	$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { 
 	   $(pager).find('li').removeClass('activeLI').filter('li:eq('+currSlideIndex+')').addClass('activeLI'); 
	};

	$('html').addClass('js');
	
	$('#images').cycle({
        fx:     'fade',
        speed: 1000,
        timeout: 5000,
		delay: -2500,
        pager:  '#nav_slideshow',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#nav_slideshow li:eq(' + (idx) + ') a';
        }
    });

	$('#brands_logos').cycle({
        fx:     'fade',
        speed: 1000,
        timeout: 5000,
		delay: -2500
        }
    );

	$("#showcase").tabs({ cache: true, ajaxOptions: { cache: true }});
	$("#tabs").tabs();
	
});