

Cufon.replace('#subtitle', { fontFamily: 'Helvetica Neue LT Std' });
Cufon.replace('.banner', { fontFamily: 'HelveticaNeueLT Std Med' });

Cufon.replace('.col1 h2', { fontFamily: 'HelveticaNeueLT Std Med' });
Cufon.replace('.info h2', { fontFamily: 'HelveticaNeueLT Std Med' });
Cufon.replace('.note', { fontFamily: 'Helvetica Neue LT Std' });
Cufon.replace('#subtitle2', { fontFamily: 'Helvetica Neue LT Std' });
$(document).ready(function(){
    
  jQuery.each(jQuery.browser, function(i) {
   if($.browser.msie){
      //nothing
   }else{
     //rollover button
  $('.button a')
   
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
                  }, 550);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 550);
      }
    );
   }
 });
  
    
    //input clear
    $('.text').click(function(){
    	$(this).attr('value','');
    	}
    )
    
    
   jQuery.each(jQuery.browser, function(i) {
   if($.browser.msie){
      //nothing
   }else{
     //rollover button
  $('.button2 a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
                  }, 550);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 550);
      }
    );
   }
 });
  
   
   $('.button2 a').click(function(){
    	$('#form2').submit();
    	}
    )
    
     $('.button a').click(function(){
    	$('#form1').submit();
    	}
    )
    
    
});

