/* make gallery images preview changeable by clicking on these images */
$(document).ready(function(){
	$('a').each(function () {
		if ($(this).attr('rel') == 'gallery_image') {
			$(this).bind('click', function() {
				var values = $(this).attr('class').split('_');
				$('#preview_area').attr('src', '/?content=gallery&t='+values[1]+'&g='+values[2]+'&type=preview');
				$('#preview_area').attr('alt', values[3]);
				return false;
			});
		}
	});
});
