  jQuery.noConflict();
  jQuery(document).ready(function() {
  jQuery('.slide-out-div').css('display','');
  jQuery('.slide-out-div').tabSlideOut({
  tabHandle: '.handle', 
  pathToTabImage: 'fileadmin/img/slices/button-navigation-home.png',
  imageWidth: '35px', 
  imageHeight: '145px', 
  tabLocation: 'left',
  speed: 300,
  action: 'click',
  topPos: '200px',
  fixedPosition: false,
  onLoadSlideOut: false
  });
});

jQuery.noConflict();
(function($) {
		$(function(){
			$("#closeBtn").click(function(){
				$("#panel").animate({height: "217px"}, "swing").animate({height: "0px"}, "fast");
				$(".panelBtn").toggle();
				return false;
			});
			$("#openBtn").click(function(){
				$("#panel").animate({height: "217px"}, "swing").animate({height: "200px"}, "fast");
				$(".panelBtn").toggle();
				return false;
			});
		});})(jQuery);