(function ($) {
    $(document).ready(function () {
								
								
			 $('#down').click(function () {
					$('#othergame').show();
					$('#down').hide();
					$('#up').show();
										  
				    
				});
			 
			  $('#up').click(function () {
				$('#othergame').hide();
					$('#up').hide();						   
				   $('#down').show();
				   
				});
			  
			
						
		});
})(jQuery);								
