$(document).ready(function(){

  $('#q').focus(function(){
    $(this).val('');
  })


  $('.standardText, .standardTextarea').focus(function(){
      $(this).css({'color':'#333333'});
  })

  $('.standardText, .standardTextarea').blur(function(){
    $(this).css({'color':'#999999'});
  })
  
  $('#brandsLogos a, #igniteGroupLink').hover(function(){
    $(this).find('img').animate({'opacity':'0'})
  }
  ,
  function(){
    $(this).find('img').animate({'opacity':'1'})
  }

  )

  $('.mouseOverArrow').hover(function(){
    $(this).attr('src',jqueryFilesPath+'/global/images/search_buttonoover.gif')
  },
    function(){
     $(this).attr('src',jqueryFilesPath+'/global/images/search_button.gif')
    }
  )

  $('#theSubmitButton').hover(function(){
    $(this).attr('src',jqueryFilesPath+'/global/images/SendFormBtOver.gif')
  },
    function(){
     $(this).attr('src',jqueryFilesPath+'/global/images/SendFormBt.gif')
    }
  )

  
})


