if (typeof jQuery !='undefined') {
  $(document).ready(function() {
    //alert('jq');
    var imgsrc='images/btnGetStarted.png';
    var imgsrchl='images/btnGetStarted_hl.png';
    $('.btnGetStarted').hover(
      function() {
        $(this).attr('src', imgsrchl);
      },
      function() {
        $(this).attr('src', imgsrc);
      })
  })
}

