/* * * * * Misc. jQuery application of design * * * * */

$(document).ready(function() {

    // THUMBNAIL OVERLAY SETUP
    //	Wrap all images in "leftContent" and "rightContent" div's with the thumbContainer div.
    $('div.leftContent img, div.rightContent img').wrap('<div class="thumbContainer">');
    $('div.thumbContainer').append('<div class="thumbOverlay"></div>');
    //	Appending span tag to end of "popup" links to create "+" icon.
    $('a.popup').append('<span></span>');


});
