$(document).ready(function() {
	$('#galleryTeaser img').fadeTo(0,.6);
	$('#galleryTeaser img').hover(function() {
		$(this).fadeTo(250, 1.0);
		}, function() {
		$(this).fadeTo(250,.6);
	});
	
	$('#galleryTeaser img:last').css('marginRight','0');
	$('#header li#navContact').css('marginRight','0');
	
	$('#header ul li#navPreschool, #header ul li#navPreschool ul').hover(function() {
		$(this).addClass('navHover');
		$(this).children('ul').slideDown('fast');
	}, function() {
		$(this).removeClass('navHover');
		$(this).children('ul').slideUp('fast');
	});
	
	$('#header ul li#navAbout, #header ul li#navAbout ul').hover(function() {
		$(this).addClass('navHover');
		$(this).children('ul').slideDown('fast');
	}, function() {
		$(this).removeClass('navHover');
		$(this).children('ul').slideUp('fast');
	});
	
	// remove right margin from every 7th image in press thumbnail grid
	$('#galleryWrap a:nth-child(6n)').children('img').css('marginRight','0');
	
});

// Opens PDF files in a new window
$(document).ready(function() {
	$('a[href*=.pdf]').click(function(){
	window.open(this.href);
	return false;
	});
});
