function Start(){var c=$("ul#Menu");var a=200;var b=300;$(c).find("li.item:has(ul) > a").addClass("hasChildren");$(c).find("li ul li:has(ul) > a").prepend('<span class="menu-sub-indicator"> &raquo;</span>');$(c).find("li ul").attr("fadeState","none");$(c).find("li").hover(function(){if($(this.getElementsByTagName("ul")[0]).attr("fadeState")=="fadeOut"){$(this.getElementsByTagName("ul")[0]).stop(true,true);$(this.getElementsByTagName("ul")[0]).attr("fadeState","none")}if($(this.getElementsByTagName("ul")[0]).attr("fadeState")=="none"){$(this.getElementsByTagName("ul")[0]).attr("fadeState","fadeIn");$(this.getElementsByTagName("ul")[0]).fadeIn(a,function(){$(this).attr("fadeState","none")})}$(this).addClass("over")},function(){if($(this.getElementsByTagName("ul")[0]).attr("fadeState")=="fadeIn"){$(this.getElementsByTagName("ul")[0]).stop(true,true);$(this.getElementsByTagName("ul")[0]).attr("fadeState","none")}if($(this.getElementsByTagName("ul")[0]).attr("fadeState")=="none"){$(this.getElementsByTagName("ul")[0]).attr("fadeState","fadeOut");$(this.getElementsByTagName("ul")[0]).fadeOut(b,function(){$(this).attr("fadeState","none")})}$(this).removeClass("over")});$(c).find("li ul:empty").css("visibility","hidden");$(c).find("ul li:last-child a").each(function(){$(this).css("border-bottom","0px")});$(c).find("li.item:last").css("background-image","none");$(c).find("li.current").each(function(){var e=$(this).prev();var d=$(this).next();if(e.attr("class")=="item"){e.css({padding:"0","background-image":"none"})}})}$(document).ready(function(){pixelsilk.renderSkin("[[Menu1]]",function(a){$("#subNavigation").html(a);var d=$("#subNavigation div");var e=$("#Menu li.item");for(z=0;z<d.length;z++){var b=e[z];var c=b.innerHTML;b.innerHTML=c+d[z].innerHTML}Start()})});
