﻿// JScript File

function loadInitScript()
{
    var browser=navigator.appName;
    var b_version=navigator.appVersion;                        
    var temp = new Array();
    temp = b_version.split(';');

    var nWidth = document.getElementById("recentupdates").style.width;

    if( browser == 'Microsoft Internet Explorer' && (( temp[1] == ' MSIE 7.0' ) || ( temp[1] == ' MSIE 6.0' )) )
    {  
        if( temp[1] == ' MSIE 7.0' )
        {                         
           document.getElementById("snippetbox").style.marginLeft = "-20px";
           
        } 
        if( temp[1] == ' MSIE 6.0' )
        {                            
            document.getElementById("recentupdates").style.marginLeft = "-5px";
            document.getElementById("recentupdates").style.height = "320px";                                
            
            document.getElementById("mysore").style.marginRight = "-2px";
            document.getElementById("mysore").style.width = "364px";
            document.getElementById("mysore").style.height = "320px";
            
            document.getElementById("snippetbox").style.width = "725px";
            document.getElementById("snippetbox").style.styleFloat = "left";
            document.getElementById("snippetbox").style.marginLeft = "-27px";
            
            
            document.getElementById("linktotop").style.styleFloat = "left";
            document.getElementById("linktotop").style.clear = "both";
            
            var collection = document.getElementById( "trekPic01" ).getElementsByTagName("div");
            
             for (var nIndex = 0; nIndex < collection.length; nIndex++)
            {
                collection[nIndex].style.width = "64px";
                collection[nIndex].style.marginTop = "0px";
                collection[nIndex].style.marginBottom = "0px";
                collection[nIndex].style.marginLeft = "1px";
                collection[nIndex].style.marginRight = "1px";
            }
            
            collection = document.getElementById( "trekPic02" ).getElementsByTagName("div");
            
             for (var nIndex = 0; nIndex < collection.length; nIndex++)
            {
                collection[nIndex].style.width = "64px";
                collection[nIndex].style.marginTop = "0px";
                collection[nIndex].style.marginBottom = "0px";
                collection[nIndex].style.marginLeft = "1px";
                collection[nIndex].style.marginRight = "1px";
            }
   
        }                       
    }
}

