// JavaScript Document
 $(function() {
	var html;
	$('#ex_rates a').hover(function(e) {
		jQuery.each(jQuery.browser, function(i) {
  			if($.browser.msie){
     			html = '<div id="ex_rates_tooltip"><h4>Price in other currencies</h4>' + data + '</div>'; //if IE, don't show curved borders
  			}else{
     			html = '<div id="ex_rates_tooltip"><span id="ctr"><c>&bull;</c></span><span id="ctl"><c>&bull;</c></span><span id="cbl"><b>&bull;</b></span> <span id="cbr"><b>&bull;</b></span> <h4>Price in other currencies</h4>' + data + '</div>'; //data is written dynamically from PHP include as var data before this ftn is called.
  			}
		});
 						
		$('body').append(html).children('#ex_rates_tooltip').hide().fadeIn(400);
		$('#ex_rates_tooltip').css('top', e.pageY + -20).css('left', e.pageX + 40);
			
	}, function() {
		$('#ex_rates_tooltip').remove();
	});
	
	$('#ex_rates a').mousemove(function(e) {
		$('#ex_rates_tooltip').css('top', e.pageY + -20).css('left', e.pageX + 40);
	});
});
 