// JavaScript Document

var DropDownMenu = function(obj){
	var object = $(obj);
	
	object.children('li').find('ul').hide();
	
	object.find('li').hover(
		function (){
			$(this).addClass('selected');
			$(this).children('ul').show();
		}, 
		function (){
			$(this).removeClass('selected');
			$(this).children('ul').hide();
		}
	);
};



