function buildAboutUsPage() {
        $('.content-holder').attr('id', '');
        $('.content-holder').attr('id', 'about-us-page');
        setHeight();
        var viewportwidth;
var viewportheight;
var contentHeight;  
window.onresize = function(event) {
	setHeight();
}


function setHeight(){
 if (typeof window.innerWidth != 'undefined') {
      viewportwidth = window.innerWidth,
      viewportheight = window.innerHeight
 } else if (typeof document.documentElement != 'undefined'
     && typeof document.documentElement.clientWidth !=
     'undefined' && document.documentElement.clientWidth != 0) {
       viewportwidth = document.documentElement.clientWidth,
       viewportheight = document.documentElement.clientHeight
 } else {
       viewportwidth = document.getElementsByTagName('body')[0].clientWidth,
       viewportheight = parseFloat(document.getElementsByTagName('body')[0].clientHeight)
 }
 
contentHeight = (viewportheight-164); 
var thisContent = document.getElementById("about-scroll-holder");
$(thisContent).height(contentHeight);
}



        $('#about-scroll-holder').sbscroller();
        
        
        
        
        
/*
        $('#about-expander a').click(function () {
                $('#about-expander a.open').next().toggle('slow');
                $('#about-expander a').each(function (index) {
                        $(this).removeClass('open');
                });
                $(this).addClass('open').next().toggle('slow');
        });
        $('#about-expander a:not(#start)').each(function (index) {
                $(this).next().toggle(1000);
        });
*/
}

