$(document).ready(function(){
	// $("#sponsors").hide();///animate("right: -50px");
	$('#sponsors').animate({right: '-170'}, 1500);
	$('#sponsors h3 a').click(function() {
		var r = parseInt($('#sponsors').css('right'));
		if (r < 0) {
			// alert('show ' + r)
			$('#sponsors').animate({right: '0'}, 500);
		} else {
			// alert('hide ' + r)
			$('#sponsors').animate({right: '-170'}, 500);
		}
	})
});
