Cufon.replace('#primaryContent h1, h3, h2,#footer h4, .itemname, .gothic, ol .commenter', {
	fontFamily: 'Gotham',
	hover:true
});

$(document).ready(function(){
// initial set
//$j("#RootItems li ul").css({display: 'none'});
// main nav hover

$("#wholesale, #colocation, #vds, #dedis, #support, #about, #web-hosting").hover(function(){ 
         $(this).parent().children("ul").css({display: 'block'});
	}, function(){
 $(this).parent().children("ul").css({display: 'none'});

});

$("#RootItems li ul").hover(function(){
$(this).css({display: 'block'});
}, function(){ 
$(this).css({display: 'none'});
});
});
