$(function(){
	$('#masn_tableOuter').hover(
		function(){
			$(this).css('cursor', 'pointer');
			$('#masn_secondTable').css('cursor', 'pointer').slideDown(3000);
		},
		function(){}
	).click(function(){
		$(this).css('cursor', 'default');
		$('#masn_secondTable').stop(false,true).fadeOut('slow');
	});
	$('#masn_secondTable').click(function(){
		$('#masn_tableOuter').css('cursor', 'default');
		$(this).stop(false,true).fadeOut('slow');
	});
});
