$(document).ready(function(){
	$('.outlet-box').hide();
	showOutlet('#outlet-oc');
	$('#outlet-select a').click(function(){
		o = $(this).attr('href')
		// alert(o);
		showOutlet(o);
		return false;
	});
	/*$('#restaurant-info #content-csc').fadeIn('fast');
	$("#restaurant-info #switch-csc").addClass('selected');
	$("#restaurant-info #switch-oph").click(function () {
		$('#restaurant-info #content-csc').fadeOut('slow');
		$('#restaurant-info #content-oph').fadeIn('slow');
		$("#restaurant-info #switch-oph").addClass('selected');
		$("#restaurant-info #switch-csc").removeClass('selected');
		return false;
	});
	$("#restaurant-info #switch-csc").click(function () {
		$('#restaurant-info #content-oph').fadeOut('slow');
		$('#restaurant-info #content-csc').fadeIn('slow');
		$("#restaurant-info #switch-csc").addClass('selected');
		$("#restaurant-info #switch-oph").removeClass('selected');
		return false;
	});*/
});

function showOutlet(outlet) {
	$('.outlet-box').hide();
	$(outlet).fadeIn('slow');
}