$(document).ready(function(){
	$("#accommodations_wrap div.room a").each(function(){
		$(this).attr({'rel': $(this).attr('href')}); // Set 'rel' to current 'href'
		$(this).attr({'href': 'javascript:void(0);'});
	});
	$("#popup a#close").attr({'href': 'javascript:void(0);'});
});
$(document).ready(function(){
	$("#accommodations_wrap div.room a").click(function(){
		$this = $(this); // Capture current anchor.
		var alt = $(this).children("img").attr('alt');
		$popup = $("#popup");
		$("#popup img").attr({'src': $this.attr('rel')});
		$("#popup img").attr({'alt': $this.attr('alt')});
		$("#popup p strong").text( alt );
		$(this).addClass("visited");
		$popup.fadeIn('slow');
	});
	$("#popup a#close").click(function(){
		$("#popup").fadeOut('slow');
	});
});