//REQUIRES jQUERY
jQuery(function(){
    $('div.horizontal-menu > ul > li').hover(function(){
	//mouseover
	$(this).addClass('hover');
    }, function(){
	//mouseout
	$(this).removeClass('hover');
    });

    $('div.horizontal-menu a').each(function(){
	$(this).attr('title', 'Click to view the page: '+$(this).text());
    });
});