
/*

	js/ch-nwa.js
	
	Purpose:
	Drives the javascript for the site
	
	Created:
	Monday 15th February 2010
	
	Created By:
	Andi Topping


*/

// hover over for main nav
window.addEvent('domready',function() {
	
	/* colour chooser for hoodys
	$$("div#hoody div.box").addEvents({
		'click' : function(ev){
			var $chosenColour = this.getProperty('id');
			if($chosenColour == 'hgreen') { 
				$('hoodyphoto').setProperty('src','images/keswick/hoody-green.png');
			}
			if($chosenColour == 'hgray') { 
				$('hoodyphoto').setProperty('src','images/keswick/hoody-gray.png');
			}
		},
		'mouseenter' : function() {
			this.setStyle('cursor','pointer');	
		}
	});

	// colour chooser for t-shirts
	$$("div#tshirt div.box").addEvents({
		'click' : function(ev){
			var $chosenColour = this.getProperty('id');
			if($chosenColour == 'hnavy') { 
				$('tshirtphoto').setProperty('src','images/keswick/tshirt-navy.png');
			}
		},
		'mouseenter' : function() {
			this.setStyle('cursor','pointer');	
		}
	});
	
	*/

	
});	

	

