function changeBG(){
        if ($('html').find('#contentHome').length>0)
        {
         //   $('#main').css('height','905px')
        }

        else if($('html').find('#Contribute').length>0 || $('html').find('#board').length>0 || $('html').find('#ascl').length>0 || $('html').find('#Contact').length>0 || $('html').find('#teams').length>0 )
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/aboutBG.jpg'));
        }

        else if($('html').find('#about.about_home').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/about_homBG.jpg'));
        }

        else if($('html').find('#ourStory').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/our_story_bg.jpg'));
        }

        else if ($('html').find('#delegations').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/exchanges.jpg'));           
        }

        else if (($('html').find('#blog').length>0) || ($('html').find('#search_results').length>0) || ($('html').find('#site_map').length>0))
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/blog_back.jpg'));           
        }

        else if ($('html').find('#acyplDelegates').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/exchanges.jpg'));           
        }

        else if ($('html').find('#exchanges').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/exchanges.jpg'));
        }

        else if ($('html').find('#calendars').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/calendars_bg.jpg'));           
        }
        
        else if ($('html').find('#Nominations').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/nominateBG.jpg'));           
        }
        
        else if ($('html').find('#Nominate').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/nominateBG.jpg'));           
        }
        
        else if ($('html').find('.alumni_active').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/alumniBG.jpg'));           
        }
        else if ($('html').find('.page404').length>0)
        {
            $('#BG #bg_container').append($('<img />').attr('src', '/wp-includes/img/bg_404.jpg'));
        }

    };
    $(document).ready(function(){
        changeBG();
    }); 

