$(function(){
	// subscription form element
	$("input#subscribe").click(function(){ // when clicked
		$(this).val(""); // clear the value
	});
	// all links in sidebar to open in new window
	$("#sidebar a").attr("target", "_blank");
	// except the link to purchase the dvd
	$(".purchase_link").removeAttr("target");
});
