﻿// JavaScript Document
var i = 1;
	$(function() {
		intro(i);
	});
	
	function intro(i) {
		$('#photo_' + i).hide().css('z-index', 3).fadeIn('slow', function() {
			$('#text_' + ((i == 1) ? '14' : i - 1) + ', #photo_' + ((i == 1) ? '14' : i - 1)).hide();
			//console.log(i);
			$('#photo_' + i).css('z-index', 1);
			$('#text_' + i).delay(400).show()
			.css({
				'margin-top': 334,
				'margin-left': 480,
				'width': 0,
				'height': 0,
				'opacity': 0					
			})
			.animate({
				width: 256,
				height: 98,
				opacity: 1,
				marginLeft:50,
				marginTop:252,
				filter: '' //animates solid in ie instead of with the black border
			}, 800, 'swing', function() {
				i = (i == 14) ? 1 : i + 1;				
				setTimeout('intro('+i+');', 3000);
			});
		});
	}
