﻿$(function () {
    $('#contentDetail .description a').each(function () {
        $(this).attr('onclick', 'window.open("' + $(this).attr('href') + '");return false;');
    });
    $('.description img').each(function () {
        $(this).hide();
    });
});

