$(document).ready(function() {
   $('ul#menu').superfish({
      delay:       400,
      animation:   {opacity:'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'  
		}); 
		$('.box2').mouseover(function(){$(this).find('.button2').addClass('active');$(this).find('h2').addClass('active');Cufon.replace('h2', { fontFamily: 'Lato', hover:true })}).mouseout( function(){$(this).find('.button2').removeClass('active');$(this).find('h2').removeClass('active');Cufon.replace('h2', { fontFamily: 'Lato', hover:true });
})
		$('.list1 li a').hover(function(){th=$(this).find('span'); th.stop().animate({backgroundPosition:'5px -40px'},300).css({color:'#009fcd'}) },
								function(){th.stop().animate({backgroundPosition:'0px 5px'},300).css({color:'#858585'})})
 });
