//<![CDATA[
jQuery('document').ready(function($){
        $("a[target]").each(function(){
                $(this).click(function(){
                        window.open($(this).attr("href"));
                        return false;
                }).removeAttr("target");
        });
});

/* Preload all images in array */
function preloadImages(images){
        var tmp = [];
        jQuery(images).each(function(id){
                tmp.push(new Image());
                tmp[tmp.length-1].src = images[id];
        });
        return tmp;
}
//]]>

