$(function() {
    $(" #nav ul ").css({display: "none"}); // Opera Fix
    $(" #nav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		},function(){
		    $(this).find('ul:first').css({visibility: "hidden"});
		});
		
    $(" #nav > li >ul >li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		var fromRight = $(document).width() - ($(this).parent().offset().left + $(this).parent().width() + 250);
		if(fromRight < 0)
		{
		    $(this).find('ul:first').css("left",-$(this).parent().width()+5);
		}
		else
		{
		    $(this).find('ul:first').css("left",$(this).width()-5);
		}
		$(this).find('ul:first').css("top",$(this).height()-18);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});

    $("#navColumn img").hover(
         function(){
          this.src = this.src.replace("_off","_on");
         },
         function(){
          this.src = this.src.replace("_on","_off");
         }
    );       
});  



 
 
// $(document).ready(function(){					
//	mainmenu();
//});
