
$(document).ready(function() {

    $('#serviceLink').click(function() {  // if we click on the news link, show news. 
        $("#frame").attr("src","edit/services.html");   // on the link set id="serviceLink"
    });

    $('#gearLink').click(function() {
        $("#frame").attr("src","edit/gear.html");   // on the link set id="gearLink"
    });

	$('#mobileLink').click(function() {
        $("#frame").attr("src","edit/mobile_gear.html");   // on the link set id="gearLink"
    });

    $('#clientLink').click(function() {
        $("#frame").attr("src","edit/clients.html");   // on the link set id="clientLink"
    });
 


});