﻿$(document).ready(function() {
//	$('h1').sifr({
//		path: 'Flash',
//		font: 'helvetica',
//		color: '#000000'
//	});

//	$('h4').sifr({
//		path: 'Flash',
//		font: 'helvetica',
//		color: '#000000'
//	});
$("#ctl00_ContentPlaceHolder1_chbCD").click(function(){
    if (this.checked) {
        $("#amount-cd").show();
    } else {
        $("#amount-cd").hide();
    }
});
$("#ctl00_ContentPlaceHolder1_chbBook").click(function(){
    if (this.checked) {
        $("#amount-book").show();
    } else {
        $("#amount-book").hide();
    }
});
});