// JavaScript Document



document.observe('dom:loaded', function() {
	var rawSwatches = $$('div.rawColourTab');				//Get an array of all the swatches on the page
	rawSwatches.each(function(s){								//For each swatch
		if(s.innerHTML!="")
		{var relevantColourName=s.innerHTML;}
		else{var relevantColourName="White";}
		if(coloursArray[relevantColourName])
		{var relevantColour=coloursArray[relevantColourName];}
		else{var relevantColour="White";}//Get the hex value of the colour from the colours array
		s.setStyle({background: relevantColour});						//Set the background colour of the swatch
		s.innerHTML="&nbsp;";	
		})	
	
	
})	