// JavaScript Document

$(document).ready(function() {
	$("div.gallery a").click(function(event) {
		//alert($("#gallery_image img").attr("src"));
		$("#gallery_image img.big").attr("src", $(this).attr("href"));
		$("#gallery_image_desc").html($(this).children("img").attr("alt"));
		event.preventDefault();
	});
});
