    $(document).ready(function(){
        $('#order').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : '/images/order-button-over.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : '/images/order-button.jpg'});             }
        );
    });

    $(document).ready(function(){
        $('#blog').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : '/images/blog-button-over.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : '/images/blog-button.jpg'});             }
        );
    });

    $(document).ready(function(){
        $('#home-1').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : '/images/home-button-1-over.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : '/images/home-button-1.jpg'});             }
        );
    });

    $(document).ready(function(){
        $('#home-2').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : '/images/home-button-2-over.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : '/images/home-button-2.jpg'});             }
        );
    });

    $(document).ready(function(){
        $('#facebook').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : '/images/facebook-over.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : '/images/facebook.jpg'});             }
        );
    });

    $(document).ready(function(){
        $('#youtube').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : '/images/youtube-over.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : '/images/youtube.jpg'});             }
        );
    });

    $(document).ready(function(){
        $('#twitter').hover(
            function(){ // Change the input image's source when we "roll on"
                $(this).attr({ src : '/images/twitter-over.jpg'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
                $(this).attr({ src : '/images/twitter.jpg'});             }
        );
    });
