(function( $ ){

  $.fn.sidebar = function( ) {  

    return this.each(function() {

      var $this = $(this);
						$(this).css("left",(9-($(this).width()*2))+"px");

						$(this).hover(function(){
	$(this).stop().animate({"left": "0"},"fast");

	},
	
	function(){
	$(this).stop().animate({"left": (9-($(this).width()*2))+"px"},  "slow","easeOutBounce");
	}
	);

    //		$(this).append($("<img src=\"/images/sidebar-button.png\" />").css({"position":"absolute","top":"43%", "left":"40px"}));
    });

  };
})( jQuery );
