$(document).ready(function(){
	
	// print on click of any link w/ 'print' as the class
	$('a.print').click(function(){
		window.print();
		return false;
	});
	
	// rotate banner in header
	$('#banner').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '43px'
	});		
	
});
