function createThumbGallery(){
	function switchToImage($a){
		var href = $a.attr('href'),
			alt = $a.find('img').attr('alt');
		
		$(".show").html($('<img>').attr('src', href));
		$(".show").append('<p>'+alt+'</p>');
	}
	
	// Load first Image
	switchToImage($("a:first.gallery_thumb"));

	// Add Click Event
	$("a.gallery_thumb").click(function(){
		switchToImage($(this));
		return false;
	});
}

