$(document).ready(function(){
    $("li.selected a").hover(function(e) { //When trigger is clicked...
        $(this).parent().find("ul.subnav").slideDown('fast').show(); 
        $(this).parent().hover(function() {
            }, function(){
                    $(this).parent().find("ul.subnav").slideUp('slow',function() { $(this).css('height','auto')} ); 
                });

    }).hover(function() {
            $(this).addClass("subhover");
        }, function(){
            $(this).removeClass("subhover");
        });
    $("li.unselected a").hover(
        function(){
            $(this).parent().addClass("hover"); 
        },function(){
            $(this).parent().removeClass("hover");
        }
    );
});
Cufon.replace('h2', { fontFamily: 'klavika' });
Cufon.replace('.callToAction');
Cufon.replace('.selected');
Cufon.replace('.navHeader',{ hover: true });




