 

  function doAnimation1() {
	  var bToW = dojo.animateProperty({
		  node: "animDiv1", 
			duration: 1000,
			properties: { 
				color: 				{ start: "#292929", end: "#ddd" },
				backgroundColor: 	{ start: "#ddd", end: "#292929" } 
			} 
		    });
	  bToW.play();
  }
  
  function offAnimation1() {
	  var wToB = dojo.animateProperty(
			    {
			      node: "animDiv1",duration: 1000,
			      properties: {
			        color:         { start: "#ddd", end: "#292929" },
			        backgroundColor:   { start: "#292929", end: "#ddd" }
			      }
			    });
	  wToB.play();
	  }
  
  
  
  
  
  function doAnimation2() {
	  var bToW = dojo.animateProperty({
		  node: "animDiv2", 
			duration: 1000,
			properties: { 
				color: 				{ start: "#292929", end: "#ddd" },
				backgroundColor: 	{ start: "#ddd", end: "#292929" } 
			} 
		    });
	  bToW.play();
  }
  
  function offAnimation2() {
	  var wToB = dojo.animateProperty(
			    {
			      node: "animDiv2",duration: 1000,
			      properties: {
			        color:         { start: "#ddd", end: "#292929" },
			        backgroundColor:   { start: "#292929", end: "#ddd" }
			      }
			    });
	  wToB.play();
	  }
  
  
  function doAnimation3() {
	  var bToW = dojo.animateProperty({
		  node: "animDiv3", 
			duration: 1000,
			properties: { 
				color: 				{ start: "#292929", end: "#ddd" },
				backgroundColor: 	{ start: "#ddd", end: "#292929" } 
			} 
		    });
	  bToW.play();
  }
  
  function offAnimation3() {
	  var wToB = dojo.animateProperty(
			    {
			      node: "animDiv3",duration: 1000,
			      properties: {
			        color:         { start: "#ddd", end: "#292929" },
			        backgroundColor:   { start: "#292929", end: "#ddd" }
			      }
			    });
	  wToB.play();
	  }
  
  
  function doAnimation4() {
	  var bToW = dojo.animateProperty({
		  node: "animDiv4", 
			duration: 1000,
			properties: { 
				color: 				{ start: "#292929", end: "#ddd" },
				backgroundColor: 	{ start: "#ddd", end: "#292929" } 
			} 
		    });
	  bToW.play();
  }
  
  function offAnimation4() {
	  var wToB = dojo.animateProperty(
			    {
			      node: "animDiv4",duration: 1000,
			      properties: {
			        color:         { start: "#ddd", end: "#292929" },
			        backgroundColor:   { start: "#292929", end: "#ddd" }
			      }
			    });
	  wToB.play();
	  }
