$(document).ready(function() {
	$("ul#other-list").hide();
	$('#list-results tr:even').addClass('odd');
    			
	$('#list-results tr').mouseover(function() {
		$(this).addClass('over');
	});
	
	$('#list-results tr').mouseout(function() {
		$(this).removeClass('over');
	});
	
	$("li.other").mouseover(
		function() {
			$("em#su-more").addClass('hover');				
		}
	);
	
	$("li.other").mouseout(
		function() {
			$("em#su-more").removeClass('hover');				
		}
	);
		
	$("em#drop").click(
		function() {
			$("ul#other-list").slideDown("fast");				
		}
	);
	
	$("ul#other-list").bind('mouseleave', function(e) {
			$(this).fadeOut("normal");
		}
	);
});				
