function hide_other_link()
{
	$( '#other_link' ).hide();
}
function show_other_link()
{
	$( '#other_link' ).show();
}
function hide_show_link()
{
	$( '#show_link' ).hide();
}
function show_show_link()
{
	$( '#show_link' ).show();
}


$( document ).ready( function()
{
	//обработчик id=hide_snow_link
   	$("#snow_link").click( function()
   	{
  		hide_show_link();
  		show_other_link();
	    
  	});
  	
  	//обработчик id=snow_other_link
   	$("#other_link").click( function()
   	{
  		hide_other_link();
  		show_show_link();	
	    
  	});
} );