$(document) .ready(function() {
            $('.box1').click(function() {
                $('#infobox').load('home.html');
            });
            $('.box2').click(function() {
                $('#infobox').load('about.html');
            });
            $('.box3').click(function() {
                $('#infobox').load('services.html');
            });
	    $('.box4').click(function() {
                $('#infobox').load('contact.html');
            });
      $('.box11').click(function() {
                $('#infobox').load('request.html');
            });
	    $('.box5').click(function() {
                $('#descriptions').load('framing.html');
            });
	    $('.box6').click(function() {
                $('#descriptions').load('drywall.html');
            });
	    $('.box7').click(function() {
                $('#descriptions').load('tile.html');
            });
	    $('.box8').click(function() {
                $('#descriptions').load('painting.html');
            });
	    $('.box9').click(function() {
                $('#descriptions').load('additions.html');
            });
	    $('.box10').click(function() {
                $('#descriptions').load('cleaning.html');
            });
      
	});       

