$(document).ready(function() {
	/*
	//Drop down menu
	$('.nov-main').bind('mouseover', function(){
		if ($(this).hasClass('selected')){
			return;
		}
		$('.nov', $('.selected')).hide();
		
		$('.nov', $(this)).css('display', 'block');

	});

	$('.nov-main').bind('mouseout', function(){
		if($(this).hasClass('selected')){
			return;
		}
		
		$('.nov', $('.selected')).show();
		
		$('.nov', $(this)).css('display','none');
	});
	*/
	$('#main-menu .nov-main').bind('mouseenter', function(){
		$('ul', $(this)).show();
	}).bind('mouseleave', function(){
		$('ul', $(this)).hide();
	})
	$('#main-menu #left-ul a').removeAttr('title');
});

