$(document).ready(function() {
	$('#print-resource-page a').click(function() {
		$('#page div.boxIndent').each(function() {
			if ($(this).css('display') == 'none') {
				$(this).css('display', ''); 
			}
		});
		$('#page img').each(function() {
			if ($(this).attr('src') == '/images/u.gif') {
				$(this).attr('src', '/images/d.gif'); 
			}
		});
		window.print();
		return false;
	});
});