/* teds-1.0.js
 *
 * JavaScript for TEDS front page
 *
 * Oliver SP Davis 09.02.10
 * Copyright King's College London, 2010
 */
 
 $(document).ready(function(){
	/*$('.nav a').hover(
		function(){
			status=$(this).find('a').attr('href');
		},
		function(){
			status='';
		}
	);
	$('.nav a').click(function(){
		location=$(this).find('a').attr('href');
	});
	$('.nav a').css('cursor','pointer');*/
	var details = [
		"Well done to all the TEDS twins who celebrated receiving their GCSE results in August 2011. Alistair and Ruth Cawdron, from St. Mary’s College in Liverpool achieved 23 A* or A grades between them!",
		"Our latest large-scale web study, for twins aged 16, has just finished for the second cohort of TEDS families. The study featured many new web activities, and partipants were rewarded with prize draw entries as well as vouchers.",
		"The TEDS Ideas Panels (TIPs for short) are being set up to ask participants' advice on the directions they'd like to see TEDS taking. So, if you're a TEDS twin and you have some opinions, we'll be giving you a chance to share them!",
		"Prizes including iPads, iPods and vouchers have been awarded to twins participating in the 16 year web study, the Behaviour Study, the Wellbeing Study, and the National Pupil Database Study. All winners are listed on our prize draw page. ",
		"2010 has been declared the International Year of Biodiversity by the United Nations, so TEDS held a photo competition with the theme of 'Earth'. Twins sent in a collection of beautiful and inspiring photos to win photographic prizes!"
	];
	var links = [
		"./news7.html",
		"./news6.html",
		"./news3.html",
		"./news9.html",
		"./news5.html",
	];
	$('#caption p, #details p').hide();
	var startSlide = Math.floor(Math.random()*6);
	$('#top').cycle({
		fx: 'fade',
		timeout: 10000,
		speed: 1000,
		before: onBefore,
		after: onAfter,
		pager: '#pager',
		pauseOnPagerHover: 1,
		startingSlide: startSlide
	});
	function onBefore(curr,next,opts){
		if (next != curr) $('#caption p, #detailText').fadeOut(1000);
	}
	function onAfter(curr,next,opts) {
		$('#caption p').html(this.alt);
		$('#detailText').html(details[opts.currSlide]);
		$('#caption p, #detailText').fadeIn(1000);
		$('#readMore a').attr('href',links[opts.currSlide]);
	}
	/*$("a#logIn").click(function(e){
		e.preventDefault()
		$("#logSlide, #logSlide p").slideToggle()
	});*/
	
});

