jQuery(document).ready(function(){

	setTimeout("jQuery(\"#list\").fadeIn(1000)",1500);
	
	jQuery("#others,#list>div").bind("mouseover",(function () {
		$("#list>div").fadeIn();
	}));
	jQuery("#others").bind("mouseout", (function (event) {
		setTimeout("$('#list>div').fadeOut()",2000);
	}));
	
});

