
      $(document).ready(function() {

/* hide elements */
        $('#right2').hide();$('#right1').hide();$('#left2').hide();$('#left1').hide();$('#lang').hide();$('#lang_sub').hide();$('#attach_hide').hide();
		$('#create_group').hide();$('#edit_group').hide();
/* end hide elements */

		// toggle page mode elements

        $('a#toggle').click(function() {

          $('#right2').toggle(400);

          return false;

        });

		$('a#toggle_right').click(function() {

          $('#right1').toggle(400);

          return false;

        });

		$('a#toggle_left').click(function() {

          $('#left1').toggle(400);

          return false;

        });

		$('a#toggle_left2').click(function() {

          $('#left2').toggle(400);

          return false;

        });

		// toggle links mode elements

		$('input#toggle_lang').click(function() {

		  $('#lang').toggle(400);

		  return true;

        });

		$('input#toggle_lang_sub').click(function() {

		  $('#lang_sub').toggle(400);

		  return true;

        });

		// toggle groups mode elements
		
		$('input#toggle_group_create').click(function() {

		  $('#create_group').toggle(400);

		  return true;

        });

		$('input#toggle_group_edit').click(function() {

		  $('#edit_group').toggle(400);

		  return true;

        });

		// toggle reg mode elements
		
		$('input#toggle_reg').click(function() {

		  $('#reg_info').toggle(400);

		  return true;

        });

		$('input#toggle_reg2').click(function() {

		  $('#reg_info2').toggle(400);

		  return true;

        });

		// toggle staj mode elements
		
		$('input#toggle_staj').click(function() {

		  $('#staj_info').toggle(400);

		  return true;

        });

		// toggle obrazowanie mode elements
		
		$('input#toggle_obrazowanie').click(function() {

		  $('#obrazowanie_info').toggle(400);

		  return true;

        });
		// toggle ezici mode elements
		
		$('input#toggle_ezici').click(function() {

		  $('#ezici_info').toggle(400);

		  return true;

        });

		// toggle ezici mode elements
		
		$('input#toggle_avatar').click(function() {

		  $('#avatar_info').toggle(400);

		  return true;

        });

		// toggle links mode elements

		$('input#toggle_attach').click(function() {

		  $('#attach_hide').toggle(400);

		  return true;

        });

		// toggle bspos mode elements
		
		$('input#toggle_bspos').click(function() {

		  $('#bspos_info').toggle(400);

		  return true;

        });

		// toggle mobspos mode elements
		
		$('input#toggle_mobspos').click(function() {

		  $('#mobspos_info').toggle(400);

		  return true;

        });
		
		// toggle nominacii mode elements
		
		$('input#toggle_nominations').click(function() {

		  $('#nominations_info').toggle(400);

		  return true;

        });

});


