jQuery(document).ready(function($) {
    if(location.href.match(/cb=1$/i)||location.href.match(/cb-buy-now/))
    {
        // the current link is from a clickbank link
        $('.sitelink').each(function() {
            var newhref = $(this).attr('href');
            if(!newhref.match(/cb-buy-now/i))
            {
                newhref += '?cb=1';
            }
            if(newhref.match(/\/buy-now/i))
            {
                newhref = newhref.replace('buy-now','cb-buy-now');
            }
            $(this).attr('href',newhref);
        });
        
        // need to make all the buy nows clickbank relevant
        $('.buy-now').each(function() {
           $(this).html('<a href="http://1.hortusrd7.pay.clickbank.net" target="cb"><img src="http://www.becomeacardealer.co.uk/images/btn_buynow.gif" alt="buy now" title="Buy Now!"/></a>');
        });
    }
   
});
