// JavaScript Document
		function colourfilter(color) {
			//alert("colour: "+color+" chosen");
			remoteLink("http://www.totallyhome.co.uk/ajax/?page=colour-output&ajax=content&palette="+color, "leftPanel")
		}
		
		function opencolourpicker() {
			var myAnim = new YAHOO.util.Anim('flashcontainer', { 
			height: { to: 350 }
			}, 1, YAHOO.util.Easing.easeBothStrong);
			myAnim.animate();
		}
		
		function closecolourpicker() {
			var myAnim = new YAHOO.util.Anim('flashcontainer', { 
			height: { to: 190 }
			}, 1, YAHOO.util.Easing.easeBothStrong);
			myAnim.animate();
		}
