 $(document).ready(function(){
    
    $("#hide").click(function () {
      if ($("#wrapper-content").is(":hidden")) {
        $("#wrapper-content").show("slow");
        $("#box-subnav").show("slow");
        $("#box-footer").show("fast");
        $("#cm").addClass("box-header-ext");


      } else {
        $("#wrapper-content").slideUp();
        $("#box-subnav").slideUp();
        $("#box-footer").hide();
        $("#cm").addClass("box-header-ext");
      }
    });

  });

$(document).ready( function()
{
	$("#q").focus(function()
        {
        	if (this.value == 'Suchbegriff eingeben') this.value ='';
		});

        $("#q").blur(function()
        {
        	if (this.value == '') this.value ='Suchbegriff eingeben';
		});	
});

$(document).ready(function() {
    $("#tabs").tabs({
    selected: 0
  });
    
  });
