
function hideAllMainText()
{
	jQuery('#main_main_page_text').hide();	 
	jQuery('#main_fill_form_text').hide();
	jQuery('#main_send_form_text').hide();
	jQuery('#main_show_form_text').hide();
	jQuery('#main_check_form_text').hide();
	jQuery('#main_win_annonc_text').hide();
	jQuery('#main_benefits_text').hide();
	jQuery('#main_inter_draw_text').hide();
}

jQuery(document).ready(function(){    	
    	hideAllMainText();
    	jQuery('#main_main_page_text').show();	 
    	    	
    	jQuery('a#main_main_page_but').click(function() {
    		hideAllMainText();
  			jQuery('#main_main_page_text').show('slow'); 			
    	    return false;
    	  });
			   	
  		jQuery('a#main_fill_form_but').click(function() {
  			hideAllMainText();
  			jQuery('#main_fill_form_text').show('slow'); 			
    	    return false;
    	  });

  		jQuery('a#main_send_form_but').click(function() {
  			hideAllMainText();
  			jQuery('#main_send_form_text').show('slow'); 			
    	    return false;
    	  });

  		jQuery('a#main_show_form_but').click(function() {
  			hideAllMainText();
  			jQuery('#main_show_form_text').show('slow'); 			
    	    return false;
    	  });
  	  
  		jQuery('a#main_check_form_but').click(function() {
  			hideAllMainText();
  			jQuery('#main_check_form_text').show('slow'); 			
    	    return false;
    	  });
  	  
  		jQuery('a#main_win_annonc_but').click(function() {
  			hideAllMainText();
  			jQuery('#main_win_annonc_text').show('slow'); 			
    	    return false;
    	  });
  	  
  		jQuery('a#main_benefits_but').click(function() {
  			hideAllMainText();
  			jQuery('#main_benefits_text').show('slow'); 			
    	    return false;
    	  });
  	  
  		jQuery('a#main_inter_draw_but').click(function() {
  			hideAllMainText();
  			jQuery('#main_inter_draw_text').show('slow'); 			
    	    return false;
    	  });

    });
