$(document).ready(function(){
	$("#bts_8").show();

	$(".bts_link").click(function(){
		$(".bts_content").hide();
		
		var id = $(this).attr('id');
		var x = id.split('_');
		
		if(x[2] != 1) swfobject.removeSWF('flashcontent_video');
		$("#bts_"+x[2]).show();
		
		return false;
	});
	
	$("#nav_dish a").click(function(){
		var url = document.location.href;
		
		window.location = url+"#dishwithothers";
		
		return false;
	});
});