startList = function() {
SubmenuCount = 5;

for (x=0; x<SubmenuCount; x++) {

if (document.all&&document.getElementById) {
	navRoot = document.getElementById("nav"+x);
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" over";
  			}
  			node.onmouseout=function() {
  				this.className=this.className.replace(" over", "");
   			}
   		}
  	}
 }
 
 }
 
}
window.onload=startList;


$(document).ready(function(){
	
	var PlusMinus = $(".icoPlus, .detail");
	AllWinOpen = $(".WinOpen");
	
	PlusMinus.click(function(){
		$(this).parents("dd").find('a:first').toggleClass("icoMinus").parent().find('.detail:first').toggleClass("hide").parents("dd").find('#AllCont').toggleClass("show");
		return false;});


// Скрипт полноценных окон
AllWinOpen.click(function(){

		$(document.body).toggleClass("OfHide");
		//WinShow = $("#"+$(this).attr("id")+"Win");
		//WinShow.toggleClass("DBlock");
		$("#DPMailBox").toggleClass("DBlock");
		$("#BGFix").toggleClass("DBlock");
		
	$("#SRequest").contents().find("#subject").attr("value", $(this).attr("title"));
		return false;});
		
$(".WinCloze").click(function(){
		$(document.body).toggleClass("OfHide");
		$(this).parents(".JaoWinPos").toggleClass("DBlock");
		$("#BGFix").toggleClass("DBlock");
		return false;});
// Окончание скрипта полноценных окон
	
});