$(document).ready(function() {

		// Sort the big pictures out
	var currPic = 1 ;
	var maxPics = $("#bigpic img").length ;
	
	$("#bigpic img").each(function() {
		$("#bigpic").append('<div id="'+ $(this).attr('id') +'" style="background: transparent url('+ $(this).attr('src') +') no-repeat left top;"></div>') ;
		$(this).remove() ;
	}) ;
	
	$("#bigpic div").not(":first").hide() ;
	$("#bigpic div:first").addClass("active") ;
	
	setInterval(function() {
		var nextPic = currPic + 1 ;
		if (nextPic > maxPics) nextPic = 1 ;
		$("#bigpic-" + currPic).removeClass("active").fadeOut(4000) ;
		$("#bigpic-" + nextPic).addClass("active").fadeIn(4000) ;
		currPic = nextPic ;
	}, 10000) ;
	
		// Sort the smaller pictures out
	$(".info-box img").each(function() {
		$(this).after('<div id="'+ $(this).attr('id') +'" style="background: transparent url('+ $(this).attr('src') +') no-repeat left top;"></div>') ;
		$(this).remove() ;
	}) ;
}) ;
