
$(function() {
	
	
		$("#content").animate({
			
			//opacity: 0.25,
			marginTop: '0',
			//marginBotttom: '0',
			width: '1010',
			height: '422'
		
		}, 1000, function() {
			
			$("#txtBox").fadeTo(100, 0.5, function() {
				$(this).effect("highlight", { color: '#ffffff' }, 300, function() {
					$(this).show().addClass('done').customScroller();
				});
			});
			
			
		});
		
		$("#menu a").mouseover(function(e) {
			
			$(".visible").removeClass("visible");
			
			$(this).addClass("visible");
			
			$("#submenu table").hide();
			
			$("#sub" + $(this).parent("td").attr("id")).show();
			
		});
		
		//$("#txtBox").customScroller();
	
	
	
});


