

$(document).ready(function(){
	var mainImage = $("#hotel-image-big").attr("src");

	$("#hotel-gallery a").hover(function() {
		$("#hotel-image-big").attr("src", $(this).attr('href'));
		$(this).addClass('photoselected')
	}, function(){
		$("#hotel-image-big").attr("src",mainImage );
		$(this).removeClass('photoselected')
	});

	$('a[rel^=prettyPhoto]')
		.prettyPhoto({
			theme: 'facebook'
	});
});
