$(document).ready(function() {
	$("#wholeseriespara").show();
	$("#nowaddtocart").hide();
	
	$("#wholeseriesbox").click(function() {
		if ($(this).is(":checked")) {
			$(".SeriesCheck").attr("checked","checked");
			$("#nowaddtocart:hidden").fadeIn();
		} else {
			$(".SeriesCheck").attr("checked","");
			$("#nowaddtocart:visible").fadeOut();
		}
	});
	
	// STAR RATING STUFF
	$("input[type=radio]").rating();
	
	// FACEBOX
	$("a[rel=facebox]").facebox();
});