$(document).ready(function(){

    $('#news_ul').innerfade({
        animationtype: 'slide',
        speed: 750,
        timeout: 7000,
        type: 'sequence',
        containerheight: '1em'
    });

    $('#jobs').cycle({
        fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        speed: 1000,
        timeout: 3000,
        pause: 1
    });
});

 function showInput(){
         var custom = document.getElementById('job').value;
                   
          if (custom == 'custom'){
              $("#customArea").css("display", "");
          }
          else {
              $("#customArea").css("display", "none");
          }
     }

function showTrainingInput(){
         var customTraining = document.getElementById('training').value;

          if (customTraining == 'custom'){
              $("#customArea").css("display", "");
          }
          else {
              $("#customArea").css("display", "none");
          }
     }


