    $(document).ready(function(){ 

          //for drop down menu
          function addMega(){
             $(this).addClass("hovering");
          }
          
          function removeMega(){
            $(this).removeClass("hovering");
          }
          
          var megaConfig = {
               interval: 200,
               sensitivity: 4,
               over: addMega,
               timeout: 200,
               out: removeMega
          };
          $("li.mega").hoverIntent(megaConfig);
          
          //ie6
          $('.fix-z-index').bgiframe();
          
//          FLIR.init( { path: '/media/text/javascript/facelift/' } );
//          	jQuery('.alpha h1:not(.main_nav h1)').each( function() { FLIR.replace(this, new FLIRStyle({cFont:'CaeciliaLTStdHeavy', cColor:'ffffff'})); } );
//          	jQuery('.alpha h2:not(.main_nav h2)').each( function() { FLIR.replace(this, new FLIRStyle({cFont:'CaeciliaLTStdHeavy', cColor:'808285'})); } );
//          	jQuery('.alpha h3:not(.main_nav h3)').each( function() { FLIR.replace(this, new FLIRStyle({cFont:'CaeciliaLTStdHeavy', cColor:'ffffff'})); } );          	
//          	
//          	//jQuery('span.text').each( function() { FLIR.replace(this, new FLIRStyle({cFont:'GothamBold',mode:'inline',cColor:'7B7B7B'})); } );
//          	//jQuery('span.tel').each( function() { FLIR.replace(this, new FLIRStyle({cFont:'GothamBold',mode:'inline', cColor:'634414'})); } );
//          	//jQuery('p.time').each( function() { FLIR.replace(this, new FLIRStyle({cFont:'GothamBold', cColor:'828282'})); } );
//          	//jQuery('.right-header ul li a').each( function() { FLIR.replace(this, new FLIRStyle({cFont:'GothamBold', cColor:'466A1C'})); } );
//          
//          	jQuery('blockquote').each( function() {
//          			FLIR.replace(this, new FLIRStyle({cFont:'CaeciliaLTStdLight',mode:'wrap', cColor:'808285'}));
//          	});                  

    });
        
   