
/*

	js/fivepound.js
	
	Purpose:
	Drives the javascript for the site
	
	Created:
	Monday 22nd February 2010
	
	Created By:
	Andi Topping


*/

// hover over for main nav
window.addEvent('domready',function() {
				
	// initiates slideshows
	if($("home")) { var myShow = new Slideshow("home", null, { delay: 6000, duration: 2000, captions: true, controller: false, loader:true }); }
	
	// initiates the tweet feed output
	if($("tweets")) {  new Twidget({ user: "abaana", count : "3" }); }
		
	if($('oneoff')) {
		$('oneoff').addEvent('click', function(e) {
			$('regular-display').setStyle('display','none');
			$('amount').setProperty('name','amount');
		});
		
		$('regular').addEvent('click', function(e) {
			$('regular-display').setStyle('display','block');
			$('amount').setProperty('name','a3');
		});
	}	
	
	if($('GiftAidChoice')) {
		$('GAYes').addEvent('click', function(e) {
			$('GiftAidChoice').setStyle('display','block');
		});
		
		$('GANo').addEvent('click', function(e) {
			$('GiftAidChoice').setStyle('display','none');
		});
	}	
	
	//alert($$("table#grid td").length);
});	

	
