function removeHomeId()
{
    //the home page's body tag has an id='home' to load a different bg, remove it for other pages
    var url = window.location.href;
    if(url.indexOf('?page=') > -1 && url.slice(url.indexOf('=')+1) != "home")
    {
        $('body').attr('id', '');
    }
}
