/**
 * jQuery Simple Image Viewer
 *
 * @url		http://jqueryglobe.com/article/simple-image-viewer
 * @author	jqueryglobe
 */
jQuery(function() {
	jQuery("#gallery_output img").not(":first").hide();

	jQuery("#gallery_nav a").click(function() {
		if (jQuery("#" + this.rel).is(":hidden")) 
		{
			jQuery("#gallery_output img").hide();
			jQuery("#" + this.rel).fadeTo("slow",1);
		}
	});
});
