// National Trust AGM, 2007 - javascript setup 

/*

These scripts use the jQuery framework to provide the animated elements of the template.

*/

$(document).ready(function(){
 
	//Hide initial animated elements
	$("div#notifyFriend").hide();
 	$("div#viewSession").hide();
	//setup toggle functions

	//notify a friend
	$("a#toggleNotify").toggle(function(){
		$("div#viewSession").animate({ height: 'hide' }, 'slow');							
		$("div#notifyFriend").animate({ height: 'show' }, 'slow');
	},function(){
		$("div#notifyFriend").animate({ height: 'hide' }, 'slow');
	});
	
	$("a#toggleViewSession").toggle(function(){
		$("div#notifyFriend").animate({ height: 'hide' }, 'slow');							 
		$("div#viewSession").animate({ height: 'show' }, 'slow');
	},function(){
		$("div#viewSession").animate({ height: 'hide' }, 'slow');
	});

});