function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=853,height=600');");
}

jQuery.noConflict();

jQuery(document).ready(function() {

    jQuery('a[rel="external"]').click(function() {
        window.open(jQuery(this).attr('href'));
        return false;
    });
//    bgImageTotal = 4;
//    randomNumber = Math.round(Math.random() * (bgImageTotal - 1)) + 1;
//    imgPath = ('/images/gen/bkg/1.jpg');  //' + randomNumber + '.jpg');
//    jQuery('body').css('background-image', ('url("' + imgPath + '")'));




    if (jQuery("#stockists").length > 0) {



        jQuery("#stockists").accordion({
            obj: "div",
            wrapper: "div",
            el: ".h",
            head: "h2, h3",
            next: "div",
            showMethod: 'show',
            hideMethod: 'hide',
            showSpeed: 100,
            hideSpeed: 100
        });
    }

});

