﻿/************************************************************
*
*  TL Site.js
*
*  Site global JS
*  This is where you do things that are specific to your site, but apply to all pages.  Master.js should not
*  be changed without review by other team members.
************************************************************/

// called from Master.js window_load(e)
function Site_Window_Load(e)
{
  
}
$j(function() {
    $j('.tab-content').each(function() {
        var imgSrc = $j('.galleryImage', this).attr('src');
        if(imgSrc) 
            $j(this).css('background', 'url("' + imgSrc + '") no-repeat');
    });
});
