$(document).ready(function(){

	$(".menu2 a").append("<em></em>");
	
	$(".menu2 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-75"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
	});


});



$(function() {         
         
    // initialize scrollable  
    $("div.scrollable").scrollable();     
     
}); 



//$(document).ready(function(){
//			$('.tTip').betterTooltip({speed: 150, delay: 120});

//	});



