
 $(document).ready(function(){

  if($('.about_this_rate').length)
  {
  
        $('.about_this_rate').attr('href','#');
        $('.about_this_rate').attr('style','font-size:10px;font-family:Arial;position:absolute;text-decoration:none;color:Black;top: 95px; left: 60px;');
        
        if ($.browser.msie  && parseInt($.browser.version) == 7) {
          $('.about_this_rate').css('top','96px');
            }
            
                $('.about_this_rate').append('<div id="tooltipper" style="position: absolute; left: 20px; height: 175px; width: 220px;top: -190px; border: 3px solid black; display: none; padding: 5px 5px 5px 5px;background-color: #EFFFEF; font-family: Tahoma,Arial,Times New Roman; font-size: 11px;text-align: justify; z-index:1000"><span class="aboutThisRate" style="font-size: 18px; color: #01732d; clear: both; font-family: Arial;">About this rate</span><br><div class="rateDescription" style="font-family: Arial; font-size: 11px; color: #000000;line-height: 18px; padding-top: 10px;"> All figures shown are based on todays Interbank rates. This is the rate at which banks and brokers buy and sell money to each other. Private individuals and small to medium sized businesses cannot access these rates. They are therefore provided for indicative purposes only. For a quote please contact us. </div></div>')
            $('.about_this_rate').hover(function(){
               $('#tooltipper').css('display','block');
            });
         $('.about_this_rate').mouseout(function(){
               $('#tooltipper').css('display','none');
          });
          
           
  }
 });

   
