	$(document).ready(function(){
		$('div.galleryLinksContainer > a').click(function() {
			myHref = this.href;
			hrefParts = myHref.split("#");
			
			if(hrefParts.length != 2) {
				return false;
			}
			
			$('div.galleryLinksContainer > a.active').removeClass('active');
			$(this).addClass('active');
			
			$('div#galleryImageContainer > img').attr('src', $('img#real-'+hrefParts[1]).attr('src'));
			$('div#galleryImageContainer > img').attr('alt', $('img#real-'+hrefParts[1]).attr('alt'));
			$('div#galleryImageContainer > img').attr('title', $('img#real-'+hrefParts[1]).attr('title'));
		});
	});	