$(function() {
	$('#rw-sidebar').hover(
		function () {
			$(this).stop().delay(350).animate({left: '0'}, 250);
		} ,
		function () {
			$(this).stop().delay(1000).animate({left: '-310px'}, 250);
		}
	);
});
