/*!
 * Developed by Kumod Shah
 * http://mekumod.blogspot.com/
 * Copyright 2011,
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Mon March 30 04:20:48 2011 
 */
$(function(){
	$('#webmenu li').hover(function(){
		$(this).children('ul').stop(true,true).show('fast');
	},function(){
		$(this).children('ul').stop(true,true).hide();
	});
	
	$('#webmenu li').hover(function(){
		$(this).children('div').stop(true,true).show('fast');
	},function(){
		$(this).children('div').stop(true,true).hide();
	});
});
