						    var defaultpagename="default.aspx";
                                                    
                                                    function menuMouseOver(i)
                                                    {
                                                        if(document.getElementById("menu" + i ).className!="menuselected")
                                                        {
                                                            document.getElementById("menu" + i ).className="menumouseover";
                                                        }
                                                    
                                                    }
                                                    function menuMouseOut(i)
                                                    {
 
                                                        if(document.getElementById("menu" + i).className!="menuselected")
                                                        {
                                                            document.getElementById("menu" + i).className="menu";
                                                        }
                                                    
                                                    }
                                                    window.onload = function checkLoadingParameters()
                                                    {
                                                    	var locate = window.location.toString();
													    if(locate.indexOf("=")>0)
													    {
													        SectionID = locate.substring(locate.indexOf("=")+1, locate.length);
													        showpagecontent(SectionID);
													    }
													    

                                                    }
                                                    function sectionNavigate(i)
                                                    {
                                                    	window.location = defaultpagename + "?section=" + i;
                                                    }
                                                    function showpagecontent(i)
                                                    {
                                                        var sectionsCount = 4;
                                                        
                                                        for(j=1;j<=sectionsCount;j++)
                                                        {
                                                            
                                                            if(i==j)
                                                            {
                                                                document.getElementById("contentDiv" + j).style.display="";
                                                                document.getElementById("menu" + j).className="menuselected";
                                                            }
                                                            else
                                                            {
                                                                document.getElementById("contentDiv" + j).style.display="none";
                                                                document.getElementById("menu" + j).className="menu";
                                                            }
                                                        }
                                                    }