$(document).ready(function() {    $('#newsLink').click(function() {  // if we click on the news link, show news.         $("#frame").attr("src","news.html");   // on the link set id="newsLink"		$("body").attr("id","news");    });    $('#contactLink').click(function() {        $("#frame").attr("src","contact.html");   // on the link set id="contactLink"		$("body").attr("id","contact");    });    $('#chinaLink').click(function() {        $("#frame").attr("src","china.html");   // on the link set id="chinaLink"		$("body").attr("id","china");    });	$('#showsLink').click(function() {        $("#frame").attr("src","shows.html");   // on the link set id="showsLink"		$("body").attr("id","shows");    });	$('#storeLink').click(function() {        $("#frame").attr("src","store.html");   // on the link set id="storeLink"		$("body").attr("id","store");    });	$('#mediaLink').click(function() {        $("#frame").attr("src","media.html");   // on the link set id="mediaLink"		$("body").attr("id","media");    });});