jQuery.noConflict();


// Global drop-down nav

 jQuery(document).ready(function() { 
        jQuery('div#globalnav ul#menulist_root').superfish({
        	delay: 300,
        	speed: 200,
        	autoArrows: false,
        	dropShadows: false
        }); 
    });

// Cufon font replacement

Cufon.replace('h1, h2 , h3 , h4, .pulltext, a.mainlevel_current_sidebar, a.mainlevel_sidebar, a.mainlevel_active_sidebar' , { hover: true });

// Table zebra-stripes

jQuery(function(){
	jQuery("tr:nth-child(odd)").addClass("odd");
});

// Tooltips for product list icons and definitions

jQuery(function(){
	jQuery('ul.product_tools li a, a.definition').tooltip({
		delay: 0,
		showURL: false,
		fade: 50,
		opacity: 0.8
	});
});


