// JavaScript Document
function changebgcolor(id)
{
  var highlightColor = "#C6D479";
  document.getElementById(id).style.backgroundColor = highlightColor;
}

function changecolorbk (id){

  var c1 = "#4299AE";
  var c2 = "#B5BE22";
  var c3 = "#E8B13B";


  if (id == "bannerRightSec1"){

	document.getElementById(id).style.backgroundColor = c1;
  }
  else if (id == "bannerRightSec2"){

	document.getElementById(id).style.backgroundColor = c2;
  }
  else if (id == "bannerRightSec3"){
	document.getElementById(id).style.backgroundColor = c3;
  } 
}
