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