$(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");
	// on the video page, remove the video from sidebar, and modify css to not hide first child
	$('body#videos .widgetright:first-child').remove(); // remove video
	$('body#videos .widgetright:first-child').show(); // show contact details
});