/* Slideshow functions */
	function initSlideShow(){
		var jsonSrc = getJsonSrc();
		var margin = 265-(jsonSrc[0]['width']/2);
		var topMarg = 167-(jsonSrc[0]['height']/2);
		$("#slideShow").html('<img src="/images/slideshow/'+jsonSrc[0]['path']+'" style="margin-left: '+margin+'px; margin-top: '+topMarg+'; display: none;" height="'+jsonSrc[0]['height']+'" width="'+jsonSrc[0]['width']+'" alt="image_0" id="slideShowImage" />');
		$("#slideShowImage").fadeIn();
		 
	}
	
	function getJsonSrc(){
		var src = eval('([{"path":"Frame1.jpg","width":530,"height":330},{"path":"Frame2.jpg","width":530,"height":330},{"path":"Frame3.jpg","width":530,"height":330},{"path":"Frame4.jpg","width":530,"height":330},{"path":"Frame5.jpg","width":530,"height":330},{"path":"Frame6.jpg","width":530,"height":330},{"path":"Frame7.jpg","width":530,"height":330},{"path":"Frame8.jpg","width":530,"height":330}])');
		return src;
	}

	function slideshowTimer()
	{
		setTimeout('nextImage()',5000);
	}
	
	
	function nextImage(){

		var jsonSrc = getJsonSrc(); 
		
			var currentImage = $('#slideShowImage').attr('alt').split("_");
			currentImage = parseInt(currentImage[1]);
			
			if(currentImage+1 >= jsonSrc.length){
				var ind = 0;
				var margin = 265-(jsonSrc[ind]['width']/2)+530;
				var topMarg = 167-(jsonSrc[ind]['height']/2);
				$("#slideShowImage").fadeOut("slow",function(){
					$("#slideShow").html('<img src="/images/slideshow/'+jsonSrc[ind]['path']+'" style="margin-left: '+margin+'px; margin-top: '+topMarg+'; display: none;" height="'+jsonSrc[ind]['height']+'" width="'+jsonSrc[ind]['width']+'" alt="image_'+ind+'" id="slideShowImage" />');
					$("#slideShowImage").fadeIn("slow", function(){
						$("#slideShowImage").animate({"margin-left":"0px"},'fast');
					});
					
				});
	
				slideshowTimer();
			}else
			if(currentImage != null){
				var ind = currentImage+1;
				var margin = 265-(jsonSrc[ind]['width']/2)+530;
				var topMarg = 167-(jsonSrc[ind]['height']/2);
				$("#slideShowImage").fadeOut("slow",function(){
					$("#slideShow").html('<img src="/images/slideshow/'+jsonSrc[ind]['path']+'" style="margin-left: '+margin+'px; margin-top: '+topMarg+'; display: none;" height="'+jsonSrc[ind]['height']+'" width="'+jsonSrc[ind]['width']+'" alt="image_'+ind+'" id="slideShowImage" />');
					$("#slideShowImage").fadeIn("slow", function(){
						$("#slideShowImage").animate({"margin-left":"0px"},'fast');
					});
					
				});
	
				slideshowTimer();
				
				}
			
		
		
	}

	$(document).ready(function(){
		initSlideShow();	
		slideshowTimer();
	});
	
	
	
	
