jQuery.noConflict();

jQuery(document).ready(function($){
  $('body').addClass('js');
  $('.joblistings div.more').siblings('a.view').click(function() {
    $(this).fadeOut('fast');
    $(this).siblings('div.more').slideDown('fast');
    return false;
  });
  
  $('.accordion dd').hide();
  $('.accordion dt').click(function() {
    $('.accordion .open').removeClass('open');
    $(this).addClass('open');
    $('.accordion dd:visible').slideUp('slow');
    $(this).next().slideDown('fast');
  });
  
  if ( $('body#page-450 #wlmreginstructions ol li:first-child a').length != 0 )
  {
    alreadyexistingurl = $('body#page-450 #wlmreginstructions ol li:first-child a').attr('href');
    window.location.replace(alreadyexistingurl);
  };
  
});

