$(document).ready(function() {
   $('ul#menu').superfish({
      delay:       400,
      animation:   {opacity:'show',height:'show'},
      speed:       400,
      autoArrows:  false,
      dropShadows: false
   });
   // initiate tool tip
		// basic usage  
		$('.normaltip').aToolTip();  
			
		// fixed tooltip  
		$('.fixedtip').aToolTip({  
				fixed: true  
		});
		$('.clicktip').aToolTip({  
				clickIt: true,  
				tipContent: 'Hello I am aToolTip with content from param'  
		}); 
   preloadImages([
		'images/marker_left2_active.png',
		'images/marker_right2_active.png',
		'images/marker_left_active.gif',
		'images/marker_right_active.gif',
		'images/menu_active.jpg',
		'images/marker_right3_active.gif',
		'images/marker_left3_active.gif',
		'images/bg_box2_active.gif',
		'images/marker_1_onbox.gif',
		'images/menu_bg.gif.gif',
		'images/marker_1_active.gif']);
 });
