$(document).ready(function() {
	// jQuery code here


	$(".confirm").click(function() {
			var q = $(this).attr("data-confirm");
			return confirm(q);
	});
	
	function showImage(whatID) {
		var img = $(whatID);
		$(".splash-image-container img").not(img).stop().animate({opacity:0}, 3000);
		img.animate({opacity:1}, 3000);
	}
	
	$(".show-pic-button").click(function() {
		showImage('#' + $(this).attr("data-image"));
	});
	$(".show-pic-button:first").click();
	
});
