jQuery(document).ready(function() {
 $("a#ToogleSidebar").click().toggle(function() {
  $('#content').animate({
    height: 'toggle',
opacity: 'hide'
  }, 'slow');
  

  if ($("#show_hide").length > 0){
      var thumb = $("#show_hide").attr("src");
      
      if(thumb == "fileadmin/templates/img/pfeil-in.png"){
          $("#show_hide").attr("src", "fileadmin/templates/img/pfeil-out.png");

      } else {
          $("#show_hide").attr("src", "fileadmin/templates/img/pfeil-in.png");
      }
  }
  
 }, function() {
  $('#content').animate({
	height: 'toggle',
   opacity: 'show'
  }, 'fast');
  
  if ($("#show_hide").length > 0){
      var thumb = $("#show_hide").attr("src");
      
      if(thumb == "fileadmin/templates/images/pfeil-in.png"){
          $("#show_hide").attr("src", "fileadmin/templates/img/pfeil-out.png");
      } else {
          $("#show_hide").attr("src", "fileadmin/templates/img/pfeil-in.png");
      }
  } 
 });
 
		jQuery('#open_suche').toggle(
			function () {jQuery('#suchform').animate({opacity:'toggle', marginLeft:'-210px'},500);},
			function () {jQuery('#suchform').animate({opacity:'toggle', marginLeft:'-200px'}, 500);}
		);


 
});

