﻿$(document).ready(function() { 

	// Image fade
	$('ul.portrait').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '307px'
	});
		
	// Image fade
	$('ul.landscape').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '200px'
	});

	$('#other_treatment').click(function () {
		$('#other_toggle').fadeIn('slow');
	});

	$('#training').focus(function () {
		$('#other_toggle').fadeOut('fast');
	});


	$('#yes').click(function () {
		$('#details_toggle').fadeIn('slow');
	});

	$('#no').focus(function () {
		$('#details_toggle').fadeOut('fast');
	});


		
}); 


