$(document).ready(function() {
	$('#tabs .footer-tab').each(function(index) {
		this.idx = index;
		$(this).click(function (index) {
			$('#tabs .footer-tab.selected').toggleClass('selected');
			$(this).toggleClass('selected');
			$('#footer-rect .tab-content.shown').toggleClass('shown');
			$('#footer-rect #tab' + (parseInt(this.idx)+1)).toggleClass('shown');
		});
	});
});
