
$j = jQuery.noConflict();

$j(document).ready(function() {
						   

    //Set up Iframe Modal
    $j('a.nyroModal').nyroModal({
    
    });


     jQuery('#stock-list table tr').click(function() {
               window.open(jQuery("a", this).attr('href'), 'newwin').focus();
               return false;
           });

});



function setHome() {
    if (document.all) {
        document.body.style.behavior = 'url(#default#homepage)';
        document.body.setHomePage(window.location.href);
    }
    else
        alert("This Feature Is Not Available In FireFox");
}

function bookmarksite(title, url) {
    if (document.all)
        window.external.AddFavorite(url, title);
    else
        window.sidebar.addPanel(title, url, "");
}

 