$(function () {
    $('#main .ipix_attachments').selthIpixSupport();
});

function switchIpixView(url) {
    $applet = $('#IpixViewer');
    $applet.find('param[name=url]').remove();
    $applet.append('<param name="url" value="'+url+'">');
    $('#main section').prepend($applet);
}
function a_switchIpixView(e) {
    e.stopPropagation();
    e.preventDefault();
    switchIpixView(this.href);
    return false;
}

$.fn.selthIpixSupport = function () {
    this.find('a').each(function () {
        var $a = $(this);
        if ($a.data('ipix') == true || $a.attr('href').match(/\.ipx$/) == null) return;
        
        $a.click(a_switchIpixView);
        $a.data('ipix', true);
    });
    return this;
}

