$(document).ready(function() {    $('#newsLink').click(function() {  // if we click on the news link, show news.         $("#frame").attr("src","edit/news.html");   // on the link set id="newsLink"    });    $('#contactLink').click(function() {        $("#frame").attr("src","edit/contact.html");   // on the link set id="contactLink"    });    $('#albumsLink').click(function() {        $("#frame").attr("src","edit/albums.html");   // on the link set id="albumsLink"    });	$('#aboutLink').click(function() {        $("#frame").attr("src","edit/about.html");   // on the link set id="aboutLink"    });	$('#pressLink').click(function() {        $("#frame").attr("src","edit/press.html");   // on the link set id="pressLink"    });	$('#lyricsLink').click(function() {        $("#frame").attr("src","edit/lyrics.html");   // on the link set id="lyricsLink"    });	$('#photosLink').click(function() {        $("#frame").attr("src","pics/photos.html");   // on the link set id="photosLink"    });});