/* Yorsal Menu @2008
 * http://www.xhtmlized.com
 * 
 * @author: Le Yang
 * @date of creation: 11/04/2008
 * @date of edition: 11/04/2008
 */

 var Menu = {
	/*fields
	 */
	 _default: 1, // the index of element
	 _navId: 'navigation',

	 /*initilized
	  */
	 init : function(){
		var self = Menu;
		
		jQuery('#' + self._navId).children('li').eq(self._default).children('ul').show();
		self.e_menu();
		
	 },
	 //handle hover event
	 e_menu : function(){
		var self = Menu;
		jQuery('#' + self._navId).children('li').each(function(i){
			jQuery(this).hover(function(){
				//alert(i);
				if (jQuery(this).children().is('ul')){ // validate the ul existance
					jQuery('#' + self._navId).children('li').children('ul').hide();
					jQuery(this).children('ul').show();
				}
			},function(){});	
		
		});
	 }
 }

jQuery(function(){
	 Menu.init();
});