﻿$(document).ready(function () {
    //prepend span tag
    $(".gallery a").prepend("<span></span>");

    $('a.ext').click(function () {
        window.open($(this).attr('href'));
        return false;
    });

});

