$(function(){
jQuery('.home #menu li>ul').parent().hover(
	function () { 
		clearTimeout(this.timer);
		jQuery(this).addClass('selected')
	},
	function () {
		$this = jQuery(this)
		this.timer = setTimeout(function (){$this.removeClass('selected');}, 200);				
	}
);

jQuery('#menu li>ul').parent().children('a').click(function(){return false;}).end();

jQuery('.home #menu a').bind('focus', function() { this.blur(); });
});
