$(function() {
	$('#clickme-directions').toggle(function() {
		$(this).parent().animate({left:'0px'}, {queue:false, duration: 500});
	}, function() {
		$(this).parent().animate({left:'-575px'}, {queue:false, duration: 500});
	});
});
