$(document).ready(function(){

  var sDefaultBoxValue = 'Keyword Search'

  $("div#header input#keyword-search").focus(function(){
    if($(this).val() == sDefaultBoxValue) {
      $(this).val('')
    }
  })
  $("div#header input#keyword-search").blur(function(){
    if($(this).val() == '') {
      $(this).val(sDefaultBoxValue)
    }
  })

})
