function toggleCheck(){
	this.toggleClass('checked');
}

window.addEvent('domready',function(){
	$$('#nav li ul').each(function(el){
		el.getParent().addEvents({
			'mouseenter': function(){
				noSelects(true);
				this.addClass('hover');
			},
			'mouseleave': function(){
				this.removeClass('hover');
				noSelects(false);
			}
		});
	});
});
