﻿var bcorg;
var corg;

/*  change submit button  */
function changeB(index)
　{
　index.style.background = "url(wp-content/themes/wp-andreas01-12/img/button1b.png) no-repeat";
　}

function rechangeB(index)
　{
　index.style.background = "url(wp-content/themes/wp-andreas01-12/img/button1a.png) no-repeat";
　}


/*  change border color  */
function change(index)
　{
　index.style.background="#ff00ff";

　corg  = index.style.color;
　index.style.color="white";

  bcorg = index.style.borderColor;
  index.style.borderColor="black";

  //index.style.borderStyle="outset";
　}

function rechange(index)
　{
　index.style.background="white";
　index.style.color=corg;
  index.style.borderColor=bcorg;
　}

function chg(index)
　{
	org = index.style.borderColor;
	index.style.borderColor="black";
	//index.focus();
　}

function rechg(index)
　{
	index.style.borderColor=org;
　}

