$(document).ready(function() {
	
	//Fix .png for IE6
	$(document).pngFix(); 

	//Preload Images

	jQuery.preloadImages = function() {
	var a = (typeof arguments[0] == 'object')? arguments[0] : arguments;
	for(var i = a.length -1; i > 0; i--) {
		jQuery("<img>").attr("src", a[i]);
	}

}

//$.preloadImages('gallery_images/gallery1.jpg', 'gallery_images/gallery2.jpg', 'gallery_images/gallery3.jpg', 'gallery_images/gallery4.jpg', 'gallery_images/gallery5.jpg', 'gallery_images/gallery6.jpg', 'gallery_images/gallery7.jpg', 'gallery_images/gallery8.jpg');



	var active_image = 1;
	
	$('#image1').click(function() {
		if (active_image != 1) {
			active_image = 1;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery1.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});
	
	$('#image2').click(function() {							   
		if (active_image != 2) {
			active_image = 2;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery2.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});	
		
	$('#image3').click(function() {							   
		if (active_image != 3) {
			active_image = 3;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery3.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});
	
	$('#image4').click(function() {							   
		if (active_image != 4) {
			active_image = 4;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery4.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});
	
	$('#image5').click(function() {							   
		if (active_image != 5) {
			active_image = 5;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery5.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});
	
	$('#image6').click(function() {							   
		if (active_image != 6) {
			active_image = 6;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery6.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});
	
	$('#image7').click(function() {							   
		if (active_image != 7) {
			active_image = 7;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery7.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});
	
	$('#image8').click(function() {							   
		if (active_image != 8) {
			active_image = 8;
			$("#galleryimage").fadeOut("fast", function(){
			$("#galleryimage").html('<img src="gallery_images/gallery8.jpg" alt="" title=""/>');
			$("#galleryimage").fadeIn("slow");
		});
		}
	});	
});