function fav_open() {
	    $('.favorites_wrapper > .tooltip').show().animate({
		    width: '240px'
		},250);
	    $('#center').animate({
		    marginLeft: '255px'
		},250, function() { resize();});
}

function fav_close() {
	    $('.favorites_wrapper > .tooltip').animate({
		    width: '0px'
		},250, function() { $(this).hide(); });
	    $('#center').animate({
		    marginLeft: '35px'
		},250, function() { resize();});
}


