/**
 * Currency pop up for Colin
 *
 * by Suzanne (c) 2009
 */

function toggleCurrencyPopup(event){
    if($('currency-tool-tip')){
        $('currency-tool-tip').setStyle({
            //left: (Event.pointerX(event)-200)+'px'
            //top: (Event.pointerY(event)-515)+'px'
            top: (Event.pointerY(event)+10)+'px'
        });
        $('currency-tool-tip').toggle();
    }
    Event.stop(event);
}

document.observe("dom:loaded", function() {
    if($('currency-tool-tip-close')){
        Event.observe($('currency-tool-tip-close'), 'click', toggleCurrencyPopup);
    }

/*    alert('Jason says what and what and oh');*/
    $$('.currency-popup').each(function(element){
        /*alert('Jason says Hi');*/
        Event.observe(element, 'click', toggleCurrencyPopup);
    });
});

