// 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).hide();
        }
    });
    
    // Fix the padding on top level anchors:
    $('.categoryList > li > a').css('padding','0');
    
    $('.themedBox').append('<img src="right-col-box-top.gif" width="182" height="13" alt="" style="position:absolute; top:0; left:0;" />');
    $('.themedBox').append('<img src="right-col-box-bottom.gif" width="182" height="13" alt="" style="position:absolute; bottom:0; left:0;" />');
    
    $('#Menu li.item').menuSeparators();
    
    $('#liveHelp').html('<div id="ciE6uq"></div><div id="scE6uq" style="display:inline"></div><div id="sdE6uq" style="display:none"></div><script type="text/javascript">var seE6uq=document.createElement("script");seE6uq.type="text/javascript";var seE6uqs=(location.protocol.indexOf("https")==0?"https":"http")+"://image.providesupport.com/js/ljstokes/safe-standard.js?ps_h=E6uq&ps_t="+new Date().getTime();setTimeout("seE6uq.src=seE6uqs;document.getElementById(\'sdE6uq\').appendChild(seE6uq)",1)</script><noscript><div style="display:inline"><a href="http://www.providesupport.com?messenger=ljstokes">Live Customer Support</a></div></noscript>');
    
    
    // Testimonial Audio Code Insertion
    // If a PIN exists, insert the audio iFrame code into the testimonials feed.
    
    $('#testimonialsFeed div.item').each(function() {
        if ($(this).find('div.testimonialPin').text() != '' ) {
            var thePin = $(this).find('div.testimonialPin').text();
            var theCode = '<sup>Click play --></sup> <iframe width="75" scrolling="no" height="25" frameborder="0" name="I1" src="http://PlayAudioMessage.com/playMemSite.asp?i=128305&amp;f=0007&amp;ps=13&amp;pin=' + thePin + '&amp;pm=2&amp;c=FFFFFF&amp;bgc=ffffff" scroll="no"></iframe>';
            $(this).find('div.testimonialPin').html(theCode).show();
        }
    });
    
});