$(document).ready(function() {
	$('a.schoolpreviewtab').each(function(i) {
		$(this).bind('click', function() {
			var target = $('#' + this.id.replace(/tabber/, ''));
			if (target) {
				$('div.schoolpreview').each(function(n) {
					$(this).hide();
				});
				$(target).show();
				$('a.current, a.currentleft').each(function(n) {
					$(this).removeClass('current');
					$(this).removeClass('currentleft');
					if (this.id == 'cedartabber') {
						$(this).addClass('leftoff');
					}
				});
				if (this.id == 'cedartabber') {
					$(this).addClass('currentleft');
					$(this).removeClass('leftoff');
				} else {
					$(this).addClass('current');
				}
			}
		});
	});
});

