﻿// Global zoom object             
var z;

$(function() {

    z = new ws_zoom();

    $('#images a.highslide').bind('click', function()
    {
        //return hs.expand(this);
        return hs.expand(this);
    });

    $('#images a.vidzoom').bind('click', function()
    {
        return z.zoom($(this));
    }).prepend('<span></span>');
    
    $('#images a.newWin').attr('target', '_new');
});
