jQuery(document).ready(function(){	
	$("#slide").easySlider({
		auto: true, 
		continuous: true
	});
	$('table.data tr:odd').addClass('alt');
	
	// Page load
	$('#expando').load(function() {
		$('#expando').fadeIn('slow');	
	});

	$(window).load(function() {
		
		var height = $('#nav ul ul:visible').height();
		var newheight = height - 20;
		if (height > 20)
			$('#nav ul:first').animate({'top':-newheight});
		
	});


});	


