//Main Menu Swap
function MainMenu_Menu_Swap_Colors_Over(MenuItem) {
  var whatMenuItem = MenuItem;
  if (whatMenuItem == 'about'){
    document.getElementById('mainmenu_aboutus_image').style.backgroundColor = "#7DD372";
    document.getElementById('aboutContent').style.backgroundColor = "#D6E8D2";
  }
  if (whatMenuItem == 'issues'){
    document.getElementById('mainmenu_issues_image').style.backgroundColor = "#FA7576";
    document.getElementById('issuesContent').style.backgroundColor = "#E7CBCA";
  }
  if (whatMenuItem == 'politics'){
    document.getElementById('mainmenu_politics_image').style.backgroundColor = "#FE8E3C";
    document.getElementById('politicsContent').style.backgroundColor = "#F0D9C9";
  }
  if (whatMenuItem == 'action'){
    document.getElementById('mainmenu_action_image').style.backgroundColor = "#FEB930";
    document.getElementById('actionContent').style.backgroundColor = "#F9E5CA";
  }
  if (whatMenuItem == 'press'){
    document.getElementById('mainmenu_press_image').style.backgroundColor = "#3FD3C7";
    document.getElementById('pressContent').style.backgroundColor = "#C6E3DF";
  }
  if (whatMenuItem == 'member'){
    document.getElementById('mainmenu_member_image').style.backgroundColor = "#FBF4B1";
    document.getElementById('memberContent').style.backgroundColor = "#fbf5bd";
  }
  if (whatMenuItem == 'giving'){
    document.getElementById('mainmenu_giving_image').style.backgroundColor = "#73DB0C";
    document.getElementById('givingContent').style.backgroundColor = "#CFE6B8";
  }
  if (whatMenuItem == 'blog'){
    document.getElementById('mainmenu_blog_image').style.backgroundColor = "#977DFC";
    //document.getElementById('blogContent').style.backgroundColor = "#C6BFE1";
  }
  if (whatMenuItem == 'multimedia'){
    document.getElementById('mainmenu_multimedia_image').style.backgroundColor = "#42AAFF";
    //document.getElementById('multimediaContent').style.backgroundColor = "#C4D9EC";
  }
}
function MainMenu_Menu_Swap_Colors_Out(MenuItem) {
  var whatMenuItem = MenuItem;
  if (whatMenuItem == 'about'){
    document.getElementById('mainmenu_aboutus_image').style.backgroundColor = "#A3B9A2";
    document.getElementById('aboutContent').style.backgroundColor = "#E2E7E1";
  }
  if (whatMenuItem == 'issues'){
    document.getElementById('mainmenu_issues_image').style.backgroundColor = "#B69493";
    document.getElementById('issuesContent').style.backgroundColor = "#DED5D6";
  }
  if (whatMenuItem == 'politics'){
    document.getElementById('mainmenu_politics_image').style.backgroundColor = "#C5A691";
    document.getElementById('politicsContent').style.backgroundColor = "#EAE3DD";
  }
  if (whatMenuItem == 'action'){
    document.getElementById('mainmenu_action_image').style.backgroundColor = "#DDC6A4";
    document.getElementById('actionContent').style.backgroundColor = "#F4EDE5";
  }
  if (whatMenuItem == 'press'){
    document.getElementById('mainmenu_press_image').style.backgroundColor = "#8CB0AE";
    document.getElementById('pressContent').style.backgroundColor = "#D9E2E1";
  }
  if (whatMenuItem == 'member'){
    document.getElementById('mainmenu_member_image').style.backgroundColor = "#EFE68E";
    document.getElementById('memberContent').style.backgroundColor = "#efe8a1";
  }
  if (whatMenuItem == 'giving'){
    document.getElementById('mainmenu_giving_image').style.backgroundColor = "#9BB681";
    document.getElementById('givingContent').style.backgroundColor = "#DDE3D5";
  }
  if (whatMenuItem == 'blog'){
    document.getElementById('mainmenu_blog_image').style.backgroundColor = "#908BAB";
    //document.getElementById('blogContent').style.backgroundColor = "#CAC7D2";
  }
  if (whatMenuItem == 'multimedia'){
    document.getElementById('mainmenu_multimedia_image').style.backgroundColor = "#809AB5";
    //document.getElementById('multimediaContent').style.backgroundColor = "#D6DBE1";
  }
}
//End Main Menu Swap

//---------------------------------------------------------------------------------------------

//Main Menu Controls Swap
function MainMenu_Controls_Swap_Image(bar, button, status) {
  var whichBar = "";
  var whichButton = "";
  var whichStatus = "";
  whichBar = bar;
  whichButton = button;
  whichStatus = status;

  if (whichBar == "home"){
    if (whichStatus == "over"){
      document.getElementById(whichButton).src=baseurl+"files/mainmenu/images/"+whichButton+"Hover.jpg";
    }
    else{
      document.getElementById(whichButton).src=baseurl+"files/mainmenu/images/"+whichButton+"Button.jpg";
    }
  }
}
//End Main Menu Controls Swap

//---------------------------------------------------------------------------------------------

//Skin Header Swap
function Skin_Header_Swap_Image(bar, button, status) {
  var whichBar = "";
  var whichButton = "";
  var whichStatus = "";
  whichBar = bar;
  whichButton = button;
  whichStatus = status;

  if (whichBar == "header"){
    if (whichStatus == "over"){
      document.getElementById(whichButton).src=baseurl+themeurl+"/images/header"+whichButton+"Hover.jpg";
    }
    else{
      document.getElementById(whichButton).src=baseurl+themeurl+"/images/header"+whichButton+".jpg";
    }
  }
}
//End Skin Header Swap

//---------------------------------------------------------------------------------------------

//Home Page Swap
function HomePage_Home_Swap_Colors_Over(panel) {
  var whatPanel = panel;
  if (whatPanel == 'learn'){
    document.getElementById('learnPanelIcon').style.backgroundColor = "#FD5D5D";
    document.getElementById('learnPanelSpacer').style.backgroundColor = "#FD5D5D";
    document.getElementById('learnPanelText').style.backgroundColor = "#FD5D5D";
    document.getElementById('learnPanelContentBackground').style.backgroundColor = "EFD7D7";
  }
  if (whatPanel == 'action'){
    document.getElementById('actionPanelIcon').style.backgroundColor = "#FFAD0C";
    document.getElementById('actionPanelSpacer').style.backgroundColor = "#FFAD0C";
    document.getElementById('actionPanelText').style.backgroundColor = "#FFAD0C";
    document.getElementById('actionPanelContentBackground').style.backgroundColor = "#FEEFDC";
  }
  if (whatPanel == 'watchlisten'){
    document.getElementById('watchlistenPanelIcon').style.backgroundColor = "#219DFF";
    document.getElementById('watchlistenPanelSpacer').style.backgroundColor = "#219DFF";
    document.getElementById('watchlistenPanelText').style.backgroundColor = "#219DFF";
    document.getElementById('watchlistenPanelContentBackground').style.backgroundColor = "#D2E3EB";
  }
  if (whatPanel == 'donate'){
    document.getElementById('donatePanelIcon').style.backgroundColor = "#59D600";
    document.getElementById('donatePanelSpacer').style.backgroundColor = "#59D600";
    document.getElementById('donatePanelText').style.backgroundColor = "#59D600";
    document.getElementById('donatePanelContentBackground').style.backgroundColor = "#DAEFC6";
  }
  if (whatPanel == 'blog'){
    document.getElementById('blogPanelIcon').style.backgroundColor = "#977DFC";
    document.getElementById('blogPanelSpacer').style.backgroundColor = "#977DFC";
    document.getElementById('blogPanelText').style.backgroundColor = "#977DFC";
    document.getElementById('blogPanelContentBackground').style.backgroundColor = "#f7f6fe";
  }
  if (whatPanel == 'subscribe'){
    document.getElementById('subscribePanelIcon').style.backgroundColor = "#CBCBCB";
    document.getElementById('subscribePanelSpacer').style.backgroundColor = "#CBCBCB";
    document.getElementById('subscribePanelText').style.backgroundColor = "#CBCBCB";
    document.getElementById('subscribePanelContentBackground').style.backgroundColor = "#F5F5F5";
  }
  if (whatPanel == 'essentials'){
    document.getElementById('essentialsPanelIcon').style.backgroundColor = "#CBCBCB";
    document.getElementById('essentialsPanelSpacer').style.backgroundColor = "#CBCBCB";
    document.getElementById('essentialsPanelText').style.backgroundColor = "#CBCBCB";
    document.getElementById('essentialsPanelContentBackground').style.backgroundColor = "#F5F5F5";
  }
  if (whatPanel == 'politics'){
    document.getElementById('politicsPanelIcon').style.backgroundColor = "#FE8E3C";
    document.getElementById('politicsPanelSpacer').style.backgroundColor = "#FE8E3C";
    document.getElementById('politicsPanelText').style.backgroundColor = "#FE8E3C";
    document.getElementById('politicsPanelContentBackground').style.backgroundColor = "#F0D9C9";
  }
}
function HomePage_Home_Swap_Colors_Out(panel) {
  var whatPanel = panel;
  if (whatPanel == 'learn'){
    document.getElementById('learnPanelIcon').style.backgroundColor = "#AA8282";
    document.getElementById('learnPanelSpacer').style.backgroundColor = "#AA8282";
    document.getElementById('learnPanelText').style.backgroundColor = "#AA8282";
    document.getElementById('learnPanelContentBackground').style.backgroundColor = "#E7DBDB";
  }
  if (whatPanel == 'action'){
    document.getElementById('actionPanelIcon').style.backgroundColor = "#D8BC94";
    document.getElementById('actionPanelSpacer').style.backgroundColor = "#D8BC94";
    document.getElementById('actionPanelText').style.backgroundColor = "#D8BC94";
    document.getElementById('actionPanelContentBackground').style.backgroundColor = "#F7F0E6";
  }
  if (whatPanel == 'watchlisten'){
    document.getElementById('watchlistenPanelIcon').style.backgroundColor = "#6988A7";
    document.getElementById('watchlistenPanelSpacer').style.backgroundColor = "#6988A7";
    document.getElementById('watchlistenPanelText').style.backgroundColor = "#6988A7";
    document.getElementById('watchlistenPanelContentBackground').style.backgroundColor = "#D8E1E6";
  }
  if (whatPanel == 'donate'){
    document.getElementById('donatePanelIcon').style.backgroundColor = "#8AA96D";
    document.getElementById('donatePanelSpacer').style.backgroundColor = "#8AA96D";
    document.getElementById('donatePanelText').style.backgroundColor = "#8AA96D";
    document.getElementById('donatePanelContentBackground').style.backgroundColor = "#E1EAD5";
  }
  if (whatPanel == 'blog'){
    document.getElementById('blogPanelIcon').style.backgroundColor = "#908BAB";
    document.getElementById('blogPanelSpacer').style.backgroundColor = "#908BAB";
    document.getElementById('blogPanelText').style.backgroundColor = "#908BAB";
    document.getElementById('blogPanelContentBackground').style.backgroundColor = "#ebe8fd";
  }
  if (whatPanel == 'subscribe'){
    document.getElementById('subscribePanelIcon').style.backgroundColor = "#BEBEBE";
    document.getElementById('subscribePanelSpacer').style.backgroundColor = "#BEBEBE";
    document.getElementById('subscribePanelText').style.backgroundColor = "#BEBEBE";
    document.getElementById('subscribePanelContentBackground').style.backgroundColor = "#EEEEEE";
  }
  if (whatPanel == 'essentials'){
    document.getElementById('essentialsPanelIcon').style.backgroundColor = "#BEBEBE";
    document.getElementById('essentialsPanelSpacer').style.backgroundColor = "#BEBEBE";
    document.getElementById('essentialsPanelText').style.backgroundColor = "#BEBEBE";
    document.getElementById('essentialsPanelContentBackground').style.backgroundColor = "#EEEEEE";
  }
  if (whatPanel == 'politics'){
    document.getElementById('politicsPanelIcon').style.backgroundColor = "#C5A691";
    document.getElementById('politicsPanelSpacer').style.backgroundColor = "#C5A691";
    document.getElementById('politicsPanelText').style.backgroundColor = "#C5A691";
    document.getElementById('politicsPanelContentBackground').style.backgroundColor = "#EAE3DD";
  }
}
//End Home Page Swap

