// -------------------------------------------------
// references Images
// -------------------------------------------------
$(document).ready(function() {
    $(".detailview .description .Images img").click(function() {
        $("#bigimage").attr("src", $(this).attr("bigimage"));
        if (CU_descriptions != null) {
            $("#ImageDescription").html(CU_descriptions[$(this).attr("index")]);
        }
    });
});

// -------------------------------------------------
// popup
// -------------------------------------------------
$(document).ready(function() {
	$("#recommendbutton").click(function() {
		cu_generatePopup("recommendPopup", "/pages/recommend.aspx", 400, 280, "tell a friend");
	});

	$("#printbutton").click(function() {
		cu_generatePopup("printPopup", "/pages/print.aspx", 800, 600, "print");
	});

	$("#privacybutton").click(function() {
		var params = $("#privacybutton").attr("page");
		cu_generatePopup("privacyPopup", "/pages/popup.aspx?" + params, 745, 600, "Info");
	});

	var favorites = $("#favoritesbutton");
	if (favorites)
		favorites.click(function() {
			CL_addBookmark();
		});
});

function cu_generatePopup(id, url, width, height, popupTitle) {
	$("#PopupContainer").html("<div ID=" + id + "><iframe src=" + url + " width=" + width + " height=" + height + " frameborder=\"0\">&nbsp;</iframe></div>");
	$("#" + id).ready(function() {
		$("#" + id).dialog({
			bgiframe: true,
			height: height + 31,
			width: width,
			modal: true,
			position: ['center', 'center'],
			draggable: false,
			resizable: false,
			dialogClass: "jQueryPopup",
			title: popupTitle
		});
	});
}