$(document).ready(function() {

	$('.exhib_img').bind('click',function(){
		imageid = $(this).attr('id').replace('image','');
		imagesrc = $(this).attr('src').replace('_small','');
		imagesrc = imagesrc.replace('-thumb','');

		$('#exhibitionimage').html('<a href="http://www.tegenboschvanvreden.com/images/'+imageid+'/" target="_blank"><img src="'+imagesrc+'"></a>');
		
		// load caption!
		$('#exhibitionimagecaption').html('');
		$('#exhibitionimagecaption').load("../../getcaption/", { id : imageid });	
		
	});
	
	
	$('.exhibitiontitle').bind('mouseenter',function(){
	
		exhibitionid = $(this).attr('id').replace('exhibition','');
		$('#exhibitionimage').load("getpreviewimage/", { id : exhibitionid });
	}); // end function
	
	
});

