

jQuery['fn']['megaMenu'] = function (mmenu) {
    
	//	$('.dropcontent')['css']('left', 'auto')['hide']();
   // $('.fullwidth')['css']('left', '-1px')['hide']();
    

		$('li')['hover'](function () {
          $(this)['children']()['stop']()['fadeTo'](100, 1);
    }, function () {
          $(this)['children']('div')['stop']()['fadeTo'](100, 0, function () {
              $(this)['hide']('fast');
        });
    });

    
};
