/* Fix IE6 flickering */
try {
	 document.execCommand('BackgroundImageCache', false, true);
	} catch(e) {}

// Jquery Tabs IPL Homepage
jQuery(function() {
    jQuery('#tabs-products').cycle({
        fx:     'fade',
        speed:  500,
        timeout: 10000,
        pager:  '#menu-tabs',
		// callback fn that creates a thumbnail to use as pager anchor 
    	pagerAnchorBuilder: function(idx, slide) { 
       		return '<li><a href="#" class="png24"><span>'+ (idx + 1) +'</span></a></li>'; 
    	} 
    });
});

