$(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_1_active.png',
		'images/menu3_bg_active.png',
		'images/opacity_50_black.png',
		'images/buttons_active.gif',
		'images/menu_bg_active.gif',
		'images/menu_marker.gif',
		'images/marker_2_active.gif',
		'images/marker_3_active.gif',
		'images/marker_4_active.gif',
		'images/marker_5_active.gif',
		'images/marker_6_active.gif',
		'images/marker_left_active.gif',
		'images/marker_right_active.gif']);
 });
