 $(document).ready(function(){
							
							
   //$('#qlButton').click(function(){
   //$('#example').show("slide", { direction: "down" }, 2000);
   //});
   
   $('#centerContent').css({'display':'none'});
   $('#centerContent').fadeIn(1000);
   
    $('#qlButton').click(function(){
      $('#example').animate({
	  zIndex: '500'
       }, 100, 'swing');
	         $('#example').animate({
	  zIndex: '500',
	  display: 'visible',
        top: '-32px', 
        opacity: '1'
       }, 1000, 'swing');
	   //return false;
    });
	
    $('#example-hide').click(function(){
      $('#example').animate({
        top: '0px', 
        opacity: '0',
		zIndex: '-10',
		display: 'none'
       }, 500);
	   $('.showLink').delay(300).show(2500, 'easeOutElastic');
	   return false;
    });	
	
   // $('#wineScroll').jScrollPane({
    //   scrollbarWidth: 1,
     //  scrollbarMargin: 1,
      // showArrows: true
   // });
   
 });
