﻿$(document).ready(function () {
    // $('.inv-item-layout').wrap('<div class="div-item-wrapper" />');
    $('.inv-pics .inv-thumb').parent().wrap('<div class="inv-thumb-wrapper" />');
    $('<div> </div>').insertAfter('.fade a');
    $('li.fade a img').parent().parent().bind('mouseenter mouseleave', function () { $(this).children('div').toggleClass('fade') });
    $('a.gallery').removeAttr("title").colorbox({ current: "{current} of {total}", height: "554px", title: false });
    $('.inv-field-header a').each(function (idx, el) {
        myHTML = $(this).html();
        $(this).parent().html(myHTML);
    });
    $('#cboxLoadedContent img').live('click', function (evt) {
        evt.preventDefault();
        $.fn.colorbox.next();
    });
});
