
$(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"
    });

    $('#storeLink').click(function() {
        $("#frame").attr("src","edit/store.html");   // on the link set id="storeLink"
    });

	$('#showsLink').click(function() {
        $("#frame").attr("src","edit/shows.html");   // on the link set id="showsLink"
    });

	$('#videoLink').click(function() {
        $("#frame").attr("src","edit/video.html");   // on the link set id="videoLink"
    });

});
