var timeout, timeoutElm;
jQuery(document).ready(function () 
{ 
	jQuery('.mainNavigation .element')
		.mouseover(function () 
		{ 
		    var self = this;
			timeoutElm = this;
			timeout = setTimeout(function () 
			{
			    jQuery('#drop_' + self.id).addClass('selected');
			   /* jQuery('.mainNavExpSimple').addClass('hide');*/

			},50);
		    
			
		})
		.mouseout(function () 
		{ 
			var self = this;
			timeoutElm = this;
			timeout = setTimeout(function () 
			{
			    jQuery('#drop_' + self.id).removeClass('selected');
			   /* jQuery('.mainNavExpSimple').removeClass('hide');*/
			},50);
		});
});