$(function() {

	$('.productServiceList .article h3 + div').toggle(false).parent().addClass('closed');
	$('.productServiceList .article:first-child h3 + div').toggle(true).parent().removeClass('closed');
	
	$('.productServiceList .article h3').click(function() {
		var content = $(' + div', $(this));
		content.slideToggle('fast', function() {
			content.parent().toggleClass('closed', !content.is(':visible'));
		});
	});

	$('#print').attr('target','_blank');
	
	$('#content .head').each(function() {
		if (!$(this).hasClass('active')) {
			
			$('img, span', this).fadeTo(0, 0.3);
			
			$(this).hover(
				function () {
					$('img, span', this).fadeTo(0, 1);
				},
				function () {
					$('img, span', this).fadeTo(0, 0.3);
				}
			);
		}
	});
	
});

