$(document).ready(function() {
	
	Cufon.replace('#main h5, #beyond .module.fixed span, #beyond .module.alt span, .module-header', { fontFamily: 'Myriad Pro Light' });
	Cufon.replace('h2, h3, #beyond .module.right-column span, #beyond .module.left-column span, #beyond .module.left-pdf span, #main span, .bottom h5, .bottom h4, .module h4, #top-header .header, #top-header .text, #top-header .smalltext, #sidebar .col-bar, #navigation li a, #sidebar strong, .contact-img strong, .contact-img span, .contact-img a, .module h5', { fontFamily: 'Myriad Pro', hover:true });

    $('#main-navigation li a span').fadeTo(0,0);
	

// set equal height

    $col = $('.col .equal');
    $colAlt = $('.col.alt .equal');
    
    if($col.height() > $colAlt.height()) {
        $colAlt.height($col.height())
        }
    else {
        $col.height($colAlt.height())
    }
	
	    // nav :)

    $('#main-navigation li a').each(function (i){
        $(this).hover(function() {
            $(this).children().stop().fadeTo(0, 1);                       
        },
            function() {
                $(this).children().stop().fadeTo(0, 0);                       
        });                                              
    });
	
}); 









