if (Drupal.jsEnabled){
   $( function() {
   /* Activate to get xhtml valid for link external popup, instead of target="_blank" dan sejenisnya
$("#page a[href^='http://']").not("a[href^='http://mysite.com']").not("a[href^='http://www.mysite.com']").click(function(){
    window.open(this.href,'external');
   	return false;
    });
  */

  //Create a compact searh form.
    var search_name = 'type to search and hit...';
  $('#search #edit-search-theme-form-1').attr('value', search_name);
  $('#search #edit-search-theme-form-1').focus(function() {
    if ($(this).attr('value') == search_name) {
      $(this).attr('value', '');
    }
  });
  $('#search #edit-search-theme-form-1').blur(function() {
    if ($(this).attr('value') == '') {
      $(this).attr('value', search_name);
    }
  });
  // Add your own here
  
  

   });//function

}