$(document).ready(function() {
	// Add zebra stripes to list tables
//	zebraStripe();
	// Add the print-page link
	$("#printpage").html('<a href="#" onclick="window.print(); return false;">Print this page</a>');
});
function addShadow(objNode, intShadowWidth, intShadowHeight) {
	if (objNode.length > 0) {
		if (intShadowWidth == undefined) intShadowWidth = $(objNode).children(":first-child").outerWidth();
		if (intShadowHeight == undefined) intShadowHeight = $(objNode).children(":first-child").outerHeight();
		$(objNode).prepend('<div class="shadow-box" style="opacity: .25; filter:Alpha(Opacity=25); width: ' + intShadowWidth + 'px; height: ' + intShadowHeight + 'px;">&nbsp;</div>');
	}
}
function adjustShadowHeight(objNode) {
	$(objNode).children("div.shadow-box").height($(objNode).children("div.inner").outerHeight());
}
function removeShadow(objNode) {
	$(objNode).children("div.shadow-box").remove();
}
