$(document).ready(function() {
	$('.contact-box span.toggle').click(function() {
		if($('.contact-box').css('left') == '-308px') {
			$('div.contact-box').animate({
				left: '0'
			},1000);
		} else if($('.contact-box').css('left') == '0px') {
			$('div.contact-box').animate({
				left: '-308'
			},1000);
		};
	});
});
