$(document).ready(function() {
	
	// activate hover for main nav
	$('#header ul li').hover(function() {
		$(this).addClass('navHover');
	}, function() {
		$(this).removeClass('navHover');
	});
	
	$('#homeCycle').cycle({timeout:4500});
	
	// Opens PDF files in a new window
		$('a[href*=.pdf]').click(function(){
		window.open(this.href);
		return false;
		});
	
});
