﻿
function displayPrice(type) {
	if (canDisplayPrice('#display' + type)) {
		$('.display' + type).show();
	}
	else {
		$('.display' +type).hide();
	}
}

function canDisplayPrice(checkBoxPriceElement) {
	var $displayPrice = $(checkBoxPriceElement);
	if ($displayPrice.length === 0) {
		return false;
	}
	if ($displayPrice.attr('checked')) {
		return true;
	}
	else {
		return false;
	}
}

function initPrice(type) {
	var displayPriceCookie = readCookie('display' + type);
	if (displayPriceCookie === "true") {
		$('#display' + type).attr('checked', true);
	}

	$('#display' + type).click(function () {
		var cookieVal = "false";
		if (canDisplayPrice('#display' + type)) {
			cookieVal = "true";
		}
		createCookie('display' + type, cookieVal);
		displayPrice(type);
	});
	displayPrice(type);
}

function displayPrices() {
	displayPrice('Retail');
	displayPrice('Msrp');
	displayPrice('Disc');
}

$(function () {
	initPrice('Retail');
	initPrice('Msrp');
	initPrice('Disc');
});

