﻿	$(document).ready(
		function(){
         top.current_menu=null;
			$('.png').supersleight();
			$('.menudiv').hover(
				function(){
				   if(this!==top.current_menu){
   					$(this).css({background:'url(images/orange-pixel.jpg)'});
   					$(this).find("a:first").css({color:'#FFF'});
               }
				},
				function(){
				   if(this!==top.current_menu){
   					$(this).css({background:'#FFF'});
   					$(this).find("a:first").css({color:'#660000'});
               }
				}
			);
			$('.menudiv').each(function(){
				if($(this).attr('id')=='menudiv_selected'){
					top.current_menu = this;
				};
			});
			if(top.current_menu){
   			$(top.current_menu).css({background:'url(images/orange-pixel.jpg)'});
   			$(top.current_menu).find("a:first").css({color:'#FFF'});
			}

			$('.menudiv').click(function(){
				document.location.href=$(this).find("a:first").attr('href');
			});
});
