// JavaScript Document

// wait until document is fully scriptable 
$(document).ready(function() { 
    // select #flowplanes and make it scrollable. use circular and navigator plugins 
    $("#advanced-fade").scrollable({size: 1, clickable: false}).circular().navigator({
		
		//navi: ".tabs", 
        // select A tags inside the navigator to work as items (not direct children) 
       //naviItem: 'a', 
        // assign "current" class name for the active A tag inside navigator 
       // activeClass: 'current' 
		
		}).autoscroll({ 
            autoplay: true, 
			autopause: true
			});
	
		$(function() {
		  $("#products").tabs("div.description", {event:'mouseover'});
		});
		
		
});


