/* slide show */
  $(function() {
    $('#slideshow').crossSlide({
      sleep: 5,
      fade: 1
    }, [
      { src: 'http://www.nuronbiotech.com/wp-content/themes/nuronbio/images/header_images/img2.jpg' },
      { src: 'http://www.nuronbiotech.com/wp-content/themes/nuronbio/images/header_images/img3.jpg' },
      { src: 'http://www.nuronbiotech.com/wp-content/themes/nuronbio/images/header_images/img4.jpg' }
    ])
  });



/* current opportunities -  job description show and hide */
 
 $(document).ready(function(){
	$('#opening1').hide();
    $('#clinicalprojectmanager').click(function(){
    if($('#opening1').is(':visible')) {
      $('#opening1').hide();
    } else {
      $('#opening1').show();
    }
  });
  
  $('#opening2').hide();
  $('#qualityspecialist').click(function(){
    if($('#opening2').is(':visible')) {
      $('#opening2').hide();
    } else {
      $('#opening2').show();
    }
  });
/* put your position/posting below this comment and above closing parenthesis  */

// #q1 is <div id="q1"> id and #assocoate_director is id of <a id="assocoate_director"> tag.
  $('#q1').hide();
  $('#assocoate_director').click(function(){
    if($('#q1').is(':visible')) {
      $('#q1').hide();
    } else {
      $('#q1').show();
    }
  });
  
  // #q2 is <div id="q2" id and #globalclinicalprojectmanager is id of <a id="globalclinicalprojectmanager"> tag.
  $('#q2').hide();
  $('#globalclinicalprojectmanager').click(function(){
    if($('#q2').is(':visible')) {
      $('#q2').hide();
    } else {
      $('#q2').show();
    }
  });
  
  // #q3 is <div id="q3"> id and #clinicaltrialassistant is id of <a id="clinicaltrialassistant"> tag.
  $('#q3').hide();
  $('#clinicaltrialassistant').click(function(){
    if($('#q3').is(':visible')) {
      $('#q3').hide();
    } else {
      $('#q3').show();
    }
  });
  
   $('#q4').hide();
  $('#datamanager').click(function(){
    if($('#q4').is(':visible')) {
      $('#q4').hide();
    } else {
      $('#q4').show();
    }
  });
  
  $('#q5').hide();
  $('#directorquality').click(function(){
    if($('#q5').is(':visible')) {
      $('#q5').hide();
    } else {
      $('#q5').show();
    }
  });
  
   $('#q6').hide();
  $('#seniormanager').click(function(){
    if($('#q6').is(':visible')) {
      $('#q6').hide();
    } else {
      $('#q6').show();
    }
  });
  
   $('#q7').hide();
  $('#manager').click(function(){
    if($('#q7').is(':visible')) {
      $('#q7').hide();
    } else {
      $('#q7').show();
    }
  });
  
   $('#q8').hide();
  $('#projectmanager').click(function(){
    if($('#q8').is(':visible')) {
      $('#q8').hide();
    } else {
      $('#q8').show();
    }
  });
   
   $('#q9').hide();
  $('#managermarketing').click(function(){
    if($('#q9').is(':visible')) {
      $('#q9').hide();
    } else {
      $('#q9').show();
    }
  });
  
  // #q3 is <div id="q3"> id and #clinicaltrialassistant is id of <a id="clinicaltrialassistant"> tag.
  $('#s1').hide();
  $('#ad_summary').click(function(){
    if($('#s1').is(':visible')) {
      $('#s1').hide();
    } else {
      $('#s1').show();
    }
  });
  
  
    $('#s2').hide();
  $('#cpm_summary').click(function(){
    if($('#s2').is(':visible')) {
      $('#s2').hide();
    } else {
      $('#s2').show();
    }
  });
  
    $('#s3').hide();
  $('#cta_summary').click(function(){
    if($('#s3').is(':visible')) {
      $('#s3').hide();
    } else {
      $('#s3').show();
    }
  });

  $('#s4').hide();
  $('#dm_summary').click(function(){
    if($('#s4').is(':visible')) {
      $('#s4').hide();
    } else {
      $('#s4').show();
    }
  });
  
  $('#s5').hide();
  $('#dq_summary').click(function(){
    if($('#s5').is(':visible')) {
      $('#s5').hide();
    } else {
      $('#s5').show();
    }
  });

$('#s6').hide();
  $('#sm_summary').click(function(){
    if($('#s6').is(':visible')) {
      $('#s6').hide();
    } else {
      $('#s6').show();
    }
  });


$('#s7').hide();
  $('#m_summary').click(function(){
    if($('#s7').is(':visible')) {
      $('#s7').hide();
    } else {
      $('#s7').show();
    }
  });
  
  $('#s8').hide();
  $('#pm_summary').click(function(){
    if($('#s8').is(':visible')) {
      $('#s8').hide();
    } else {
      $('#s8').show();
    }
  });
  
  
   $('#s9').hide();
  $('#mma_summary').click(function(){
    if($('#s9').is(':visible')) {
      $('#s9').hide();
    } else {
      $('#s9').show();
    }
  });
  /* put your code of position/posting above this comment.  */
  
});

