$(document).ready(function() {
    //Move Primary nav to appropriate spot
    handleResize();

    //Make search clickable
    $("#btnSearch").click(function() {
        var searchString = $("#dnn_txtSearch").val();
        location.href = "/tabid/37/default.aspx?search=" + searchString;
    });
    
    //Load home page flash document
    $('#divHomeFlash').append('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="952" height="568" id="msiHome" align="middle"><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="false" /><param name="movie" value="/Portals/_default/Skins/MSI/msiHome_new.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><embed src="/Portals/_default/Skins/MSI/msiHome_new.swf" quality="high" bgcolor="#000000" width="952" height="568" name="msiHome" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" /></object>')
    //$('#divWhyLectrus').append('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="480" height="107" id="whyLectrus" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="false" /><param name="movie" value="/Portals/_default/Skins/MSI/whyLectrus.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />	<embed src="/Portals/_default/Skins/MSI/whyLectrus.swf" quality="high" bgcolor="#ffffff" width="480" height="107" name="whyLectrus" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');

    //Populate contact links without direct html
    $(".aContact").append('sales@lectrus.com');

    //Add Events to the Primary Navigation
    $('#tblPrimaryNav img').hover(
        function() { this.src = this.src.replace("_Off", "_On"); },
        function() { this.src = this.src.replace("_On", "_Off"); }
    );

    jQuery('#inSpanish').attr("href","http://translate.google.com/translate?js=y&prev=_t&hl=en&ie=UTF-8&layout=1&eotf=1&sl=auto&tl=es&u=" + location.href);   
    
//THE END
});

function handleResize() {
    //Move Primary Navigation to the correct spot
    var windowWidth = $(document).width();
    var divWidth = $("div.divCenter").width();
    if (windowWidth > divWidth) {
        var leftGap = (windowWidth - divWidth) / 2;
        $("#tblPrimaryNav").animate({ left: leftGap }, 500);
    }
};
var resizeTimer = null;
$(window).bind('resize', function() {
    if (resizeTimer) clearTimeout(resizeTimer);
    resizeTimer = setTimeout(handleResize, 100);
});

function ShowHome(obj) {
    $("#trLargest, #trWhyChoose, #trTestimonials, #trContactDetails").hide();
    $("#" + obj).show("slow");
}

