// when user clicks on the thickbox link, add a class to the div with ID of maincontent-wrap. 
$(document).ready(function() {

	$("a#TB_closeWindowButton").livequery(function(){ 
			$("#maincontent-wrap").addClass("print");
		}, function() { 
			$("#maincontent-wrap").removeClass("print");
	});
  
});




