jQuery(document).ready(function() {								
	$("a#ToogleSidebar").click().toggle(function() {
		$('#ToogleSidebar').html('<img src="images/btn_leftmenu_close.png" width="50" height="225" />');											 
		$('#panel-blog').animate({
			marginLeft: '+=300px'
			//opacity: 'hide'			
		}, 'fast');
	}, function() {
		$('#ToogleSidebar').html('<img src="images/btn_leftmenu_open.png" width="50" height="225" />');	
		$('#panel-blog').animate({
			marginLeft: '-=300px'
			//opacity: 'show'		
		}, 'slow');
	});
});
