//**********************************************************************
// This script is used to manipulate the data content which appears
// on the multi hotel promotion page.  Any page which uses this script
// must also include AjaxCommon.js, Analytics.js, and Promotion.js.
//**********************************************************************

var mpr_ratingImagePath = "/images/hotel/rating/";



$(function() {
	
	$("#promotiondetails").css("display", "block");
	$("#termsConditions").show();
	
	
	scaleImages($("#promoImageBox #promoImage"), 300);
    scaleImages($("#promoLogos .scalableImage"), 100); 
		
    
    $(".hotelRatingImg").each(
		function(i) {			               
			$(this).attr("src", mpr_ratingImagePath + mpr_starRatings[i] + ".gif");
    });
    
    
    //Cookie tracking - Call this last so it does not affect the user experience
	trackLandingView();
})
