// JavaScript Document

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

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


$(function() {
	$('#menu_tab').toggle(function() {
		$(this).parent().animate({top:'0px'}, {queue:false, duration: 500});
	}, function() {
		$(this).parent().animate({top:'-90px'}, {queue:false, duration: 500});
	});
});

$(function() {
	$('#opt_in_tab').toggle(function() {
		$(this).parent().animate({top:'0px'}, {queue:false, duration: 500});
	}, function() {
		$(this).parent().animate({top:'-155px'}, {queue:false, duration: 500});
	});
});

$(function() {
	$('#cart').toggle(function() {
		$(this).parent().animate({top:'0px'}, {queue:false, duration: 500});
	}, function() {
		$(this).parent().animate({top:'-400px'}, {queue:false, duration: 500});
	});
});

$(function() {
	$('#twitter_feed_tab').toggle(function() {
		$(this).parent().animate({right:'0px'}, {queue:false, duration: 500});
	}, function() {
		$(this).parent().animate({right:'-175px'}, {queue:false, duration: 500});
	});
});
