jQuery(function(){

  // open career links for jobvite in new window
  jQuery("a[rel='career-apply']").click(function () {
    var attrs = "height=750,width=850,scrollTo,resizable=1,scrollbars=1,location=0";
    newwindow = window.open(this.href, 'Marbles Careers', attrs);
    return false;
  });
  
});

