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