// JavaScript Document

function slideSwitch() {
    var $active = $('#slideShow a.active');
	
    if ( $active.length == 0 ) $active = $('#slideShow a:last');
	
    var $next =  $active.next("a").length ? $active.next("a") : $('#slideShow a:first');
    $active.addClass('lastActive');
    $next.css({opacity: 0.0})
		.removeClass('notVisible')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active lastActive');
			$active.addClass('notVisible')
			
        });
	$next.addClass('active');
}

$(document).ready(function()
{

	$("#slideShow").append(" <a class='active' href='#'><img alt='Meols Hall Wedding Photography' src='assets/images/slideshow/Meols-Hall-Wedding-Photography-Matthew-Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Liverpool Wedding Photography by Matthew Rycraft' src='assets/images/slideshow/Liverpool Wedding Photography by Matthew Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Southport Wedding Photography' src='assets/images/slideshow/Southport Wedding Photography.jpg' /></a><a class='notVisible' href='#'><img alt='Wirral Wedding Photographer Matthew Rycraft' src='assets/images/slideshow/Wirral-Wedding-Photographer-Matthew-Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Inglewood Manor Wedding Photography by Matthew Rycraft' src='assets/images/slideshow/Inglewood Manor Wedding Photography by Matthew Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Southport Wedding Photographer' src='assets/images/slideshow/Southport Wedding Photographer.jpg' /></a><a class='notVisible' href='#'><img alt='Southport Wedding Photographer Matthew Rycraft' src='assets/images/slideshow/Southport Wedding Photographer Matthew Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Liverpool Wedding Photographer Matthew Rycraft' src='assets/images/slideshow/Liverpool Wedding Photographer Matthew Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Liverpool Wedding Photographer' src='assets/images/slideshow/Liverpool Wedding Photographer.jpg' /></a><a class='notVisible' href='#'><img alt='Wirral Wedding Photographer Matthew Rycraft' src='assets/images/slideshow/Wedding-Photographer-Wirral-Matthew-Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Sefton Palm House Liverpool.jpg' src='assets/images/slideshow/Sefton-Palm-House-Liverpool-Matthew-Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Wedding Photographer Liverpool' src='assets/images/slideshow/Wedding-Photographer-Liverpool-Matthew-Rycraft.jpg' /></a><a class='notVisible' href='#'><img alt='Wedding Photographer Southport' src='assets/images/slideshow/Wedding-Photographer-Southport-Matthew-Rycraft.jpg' /></a>");

var t = setInterval( "slideSwitch()", 2500 );
});
