
$(document).ready(function() {

    $('#musicLink').click(function() {  // if we click on the news link, show news. 
        $("#frame").attr("src","edit/music.html");   // on the link set id="musicLink"
    });

    $('#bioLink').click(function() {
        $("#frame").attr("src","edit/bio.html");   // on the link set id="bioLink"
    });

    $('#shopLink').click(function() {
        $("#frame").attr("src","edit/shop.html");   // on the link set id="shopLink"
    });

	$('#pressLink').click(function() {
        $("#frame").attr("src","edit/press.html");   // on the link set id="pressLink"
		});
	
	$('#videosLink').click(function() {
        $("#frame").attr("src","edit/videos.html");   // on the link set id="bioLink"
    });
	
	$('#photosLink').click(function() {
        $("#frame").attr("src","edit/photos.html");   // on the link set id="photosLink"
    });

	$('#miscLink').click(function() {
        $("#frame").attr("src","edit/misc.html");   // on the link set id="miscLink"
		});
 


});