
jQuery(function(){
	jQuery("ul.sf-menu").superfish();
})

$(document).ready(function () {
  var search_dom = $("#search_string");
  if(search_dom != null) {
    search_dom.attr('value', 'type here then press enter');
    search_dom.bind('focus', function () {
      if($(this).attr('value') == 'type here then press enter')
        $(this).attr('value', '');
    });
    search_dom.bind('blur', function () {
      if($(this).attr('value') == '')
        $(this).attr('value', 'type here then press enter');
    });
    $('#searchform').submit(function () {
      if($("#search_string").attr('value') == 'type here then press enter')
        $("#search_string").attr('value', '');
    });
  }
});
