
Cufon.replace('#claim');

$(document).ready(function(){
    
  jQuery.each(jQuery.browser, function(i) {
   if($.browser.msie){
      //nothing
   }else{
     //rollover button
  $('.button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
                  }, 550);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 550);
      }
    );
   }
 });
  
    
    //input clear
    $('.text').click(function(){
    	$(this).attr('value','');
    	}
    )
    
    $('.button a').click(function(){
    	$('#form1').submit();
    	}
    )
   


    
});

