try{
	jQuery(document).ready(
		function(){ 
			jQuery("ul.topNav li a").hover(function() {
					jQuery(this).parent().find("ul.subNav").slideDown('slow').show(); 
					jQuery(this).parent().hover(function() { }, function(){ 
							jQuery(this).parent().find("ul.subNav").slideUp('slow'); 
						}
					); 
				}
			);
			
			if(jQuery('#customerTestimonials').length > 0){
				jQuery('#customerTestimonials').cycle({fx: 'fade'});
			}
			
			try{productScrollerObj = new Slider('productScroller');}catch(e){}
			
			if(jQuery('#featureSectionsSlideShow').length > 0){
				jQuery('#featureSectionsSlideShow').cycle({fx: 'fade', timeout: 5000});
			}
			
			jQuery("#itemPageTabs").tabs();
		}
	);
}catch(e){}
