var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover

$(document).ready(function() {
	$('.works > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
			 $(".oworkst").fadeOut('fast');
		} //if
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			9000000000);
	});
  
	
});
$(document).ready(function() {
$("#newcontent").fadeIn('slow');
$("div#artists").load("menu.html");
});