jQuery(document).ready(function() {
    jQuery('#leftwrap').append('<a class="animate-menu hide" href="#">hide</a>');
//	p=jQuery('.animate-menu').position().left;
//	jQuery('#leftwrap').css('right',p);
	jQuery('#content').append(jQuery('#leftwrap'));

//	jQuery('.animate-menu').click(function(){
//		jQuery( '#leftwrap' ).slideToggle('slow');
//	});
	 jQuery('.animate-menu').click(function(){
      if(jQuery('.animate-menu').hasClass('hide')) {
        jQuery('#leftwrap').animate({height:'0px', width:'0px'},'slow')
		jQuery('.animate-menu').removeClass('hide');
      } else {
        jQuery('#leftwrap').animate({height:'268px', width:'170px'},'slow');
		jQuery('.animate-menu').addClass('hide');
      }
    });


});

//jQuery( '#leftwrap' ).toggle(function(){
//this.animate( { width: '170px'},'slow');
//
//})

