/****************************************
| ** MCLAREN | LEWIS HAMILTON COLLECTION GALLERY **
|
| Created by: Adam Foster
| Date Created: 2008-23-06
| Copyright 2008 Lightmaker Manchester
|
****************************************/

$(document).ready(function(){

	//Resort Gallery
	$('.thumbnailimages img').css({opacity: '0.6'});
	$('.mainImage img').css({opacity: '1'});
	var currentImage = "image1";
	var potentialImage = "image1";
	$('.thumbnailimages .'+currentImage).css({opacity: '1'});
	$('.thumbnailimages li').css({cursor: 'pointer'});
	
	$('.thumbnailimages li').hover(
		function(){
				potentialImage = $(this).children('img').attr("class");
				if(potentialImage != currentImage) {
					$(this).children('img').stop().animate({opacity: 1},400, "easeInOutQuad"); 
				}
			}, 
		function(){
			if($(this).children('img').attr("class") != currentImage) {
				$(this).children('img').stop().animate({opacity: 0.6},400, "easeInOutQuad");
			}
		}
	);
	
	$('.thumbnailimages li').click(function () { 
		$(".thumbnailimages ."+currentImage).stop().animate({opacity: 0.6},400, "easeOutQuad");
		currentImage = potentialImage;
		$(".thumbnailimages ."+currentImage).stop().animate({opacity: 1},400, "easeOutQuad");
		$(".mainimage img").stop().animate({opacity: 0},600, "easeOutQuad");
		$("#"+currentImage).stop().animate({opacity: 1},1000, "easeOutQuad");
	});

});
