$(function() {
	$("#gallery-slider").easySlider();
	$("a.gallery-image").click(function() {
		var image = $(this).attr("rel");
		var title = $(this).attr("title");
		var description = $(this).attr("name");
		$('#gallery-large-image').hide();
		$('#gallery-large-image').fadeIn('slow');
		var htmlcontent = '<a href=' + (title == '' ? '"#"' : '"http://' + title + '" target= "_blank"') + '><img src="' + image + '" width="223" height="179" style="border: 2px solid #fff;" />';
		htmlcontent += '</a>';
		if(description!='') {
			htmlcontent += '<p style="background-color:white;padding:5px;width:217px;">'+description+'</p>';
		}
		$('#gallery-large-image').html(htmlcontent);
		return false;
	});
});