// Initialize the Scripts for this site.

$(document).ready(function() {
    
    // Opens up Smart Solutions in new window.
    $('.lnkBlank').click(function() {
        window.open($(this).attr('href'), 'newWindow', '');
        return false;
    });
    
    // Select the text in the search box:
    $('input.txtSearch').focus(function() {
        $(this).select();
    });
    
    // Hides list item images if no src is defined:
    $('img.listItemImage').each(function() {
        if ($(this).attr('src') == '' || $(this).attr('src') == '?w=150') {
            $(this).hide();
        }
    });
    
    $('#siteMenu').append('<img src="/menu-corner-left.gif" alt="" style="position:absolute;top:0;left:0" /><img src="/menu-corner-right.gif" alt=""style="position:absolute;top:0;right:0" />');
    
    if ($('#slideShow').size() >0 ) {
        $('#slideShow').cycle();
    }
    
    $('body').ieDetector();
    
    $('.staffInfoItem span.text').each(function() {
        if ($(this).html() == '') {
            $(this).parent().hide();
        }
    });
    
});
