$(document).ready(
	function() {
		$("#cnt-overlay").bgiframe();
		picGallery("#pic-box-med-1", "#pic-box-mini-1", "#cnt-hotel-reviews .hotel-hdr h2");
		
		
		$("#cnt-hotel-reviews .add-review-box .stars-wrp").each( function(index, el){
			var oEl = $(el);

			oEl.stars({
				cancelShow: false,
				captionEl: oEl.siblings(".stars-capt")
			});
		});
		
		
		var aInitializedRvPicBoxes = new Array();
		
		$("#cnt-hotel-reviews .list-box .item .item-txt .img a").click(function(e){
			var sPicBoxSel = $(this).attr("href");
			
			if (aInitializedRvPicBoxes[sPicBoxSel] == undefined) {
				aInitializedRvPicBoxes[sPicBoxSel] = true;
				picGallery(sPicBoxSel, null, "#cnt-hotel-reviews .hotel-hdr h2");
			}
			
			$(sPicBoxSel).find("a.on").trigger("click");
			
			return false;
		});
	}
);

