jQuery(document).ready
(
	function()
	{

  // Блок "о компании" на главной
  //
  jQuery('.index_about').click
  (
   function()
   {
    jQuery('.downl_file .hidden').removeClass('hidden');
    return false;
   }
  );

  // Заявка
  //
  jQuery('.info_sbm span').click
  (
   function()
   {
    jQuery('.bid .form').toggle();
    return false;
   }
  );


	}
);
