// JavaScript Document

$(document).ready(function() {

	/*$("#menu li ul").hide();
	$(".submenu li ol").hide();*/
		
	/*$(".submenu li").hover(function () { 
      if ($(this).children("ol").css('display') == 'none') {
	  	$(this).children("ol").show(800);
	  }
    },function () { 
       	$(this).children("ol").hide(3000);			  
    });*/
	/*$("#menu li").click(function () { 
	  if ($(this).children("ul").css('display') != "block") {
		$(this).children("ul").show(500);
		//$(this).children("ul").css('display':'inline');
	  }	 
    }*/
		
});// document ready



