$(document).ready(function() {
	$("#hotelimages").jcarousel({
		scroll: 4,
		animation: 'slow'
		}
	);
	
	
	$("#hotelimages").find("li").find("a").click(function(me) {
			// replace the main image
			me.preventDefault();
			$("#featureimage").html("<img src='"+$(this).attr("href")+"' alt='' width='533' height='322' border='0' style='display:block'>");
			//$("#mainimage").attr("src") = 'images/dummy_hotelresult.jpg';
	});
	
});