// BEGIN CAREERS-MAIN.JS
jQuery(document).ready(function() {
    jQuery('.job-posting-row').hover(
       function() {
         jQuery(this).addClass('hover');
       },
       function() {
         jQuery(this).removeClass('hover');
       }
    );
    
    jQuery('.job-posting-row').click(
      function() {
        linkAddress = jQuery(this).find('a:first').attr('href');
        window.location.href = linkAddress ;
      }
    );
});
// END CAREERS-MAIN.JS
