function printPage() {
	window.open(document.location.href + (document.location.href.indexOf('?') != -1 ? '&' : '?') + 'print=true','printWindow','width=600,height=700,scrollbars=yes,toolbar=no,location=no');
}
$(document).ready(function() {
	if($('#homepageImages'))
		$('#homepageImages').innerfade({
			speed:           1000,
			timeout:         6000,
			type:            'random_start',
			containerheight: '1.5em'
		});
	if(printMode) {
		window.print();
		$('a:not([href^="#"])').click(function() {
			var target = window.opener || window;
			target.location.href = this.href.replace(/(\?|&)print=true/, '');
			if(target !== window) window.close();
			return false;
		});
	}
});