
/*

	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/nwa/hoody-green.png');
			}
			if($chosenColour == 'hred') { 
				$('hoodyphoto').setProperty('src','images/nwa/hoody-red.png');
			}
			if($chosenColour == 'hblue') { 
				$('hoodyphoto').setProperty('src','images/nwa/hoody-blue.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 == 'hgreen') { 
				$('tshirtphoto').setProperty('src','images/nwa/tshirt-green.png');
			}
			if($chosenColour == 'hred') { 
				$('tshirtphoto').setProperty('src','images/nwa/tshirt-red.png');
			}
			if($chosenColour == 'hblue') { 
				$('tshirtphoto').setProperty('src','images/nwa/tshirt-blue.png');
			}
		},
		'mouseenter' : function() {
			this.setStyle('cursor','pointer');	
		}
	});

	
});	

	
