//**********************************************************************
// 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.
//**********************************************************************

$(function() {
	
	$(".friendlyURL").attr("href", window.location);	
	$("#promotiondetails").css("display", "block");
	$("#termsConditions").show();
	
	
	scaleImages($("#promoImageBox #promoImage"), 300, 300);
    //scaleImages($("#promoLogos .scalableImage"), 100, 100);
		
    
    $(".hotelRatingImg").each(
		function(i) {
			if (mpr_starRatings[i] != "") {				
				$(this).attr("src", pr_ratingImagePath + mpr_starRatings[i] + ".gif");
			}			
    });
    
    
    //Cookie tracking - Call this last so it does not affect the user experience
	trackLandingView(mpr_promoID);
})
