jQuery2(document).ready(function() {

Cufon('ul.dropdown a.dir', {hover: 'true'});
Cufon.replace('ul.dropdown a.dir, .Heading, .headingLeft, .headingRight', { fontFamily: 'trajan' });
Cufon.replace('.headingLeft, .headingRight', {textShadow: '1px 1px rgba(0,0,0,0.2)'});
jQuery2('a.dir').show();
jQuery2('.Heading').fadeIn();
jQuery2('.headingLeft').fadeIn();
jQuery2('.headingRight').fadeIn();
jQuery2('.menu').fadeIn();
jQuery2('.Heading').css('display','block');


function updateMenu() {
 setTimeout(function() {
   Cufon.replace('ul.dropdown a.dir', {}, false);
 }, 10);
}
jQuery2('ul.dropdown li').hover(updateMenu, updateMenu); 

});
