$(document).ready(function() {


$('#showImprint').click(function() {
	ToggleContent('imprint');
});

$('#showProfile').click(function() {
	ToggleContent('profile-full');
});

$('#showCompetence').click(function() {
	ToggleContent('competence-full');
});

$('#showProducts').click(function() {
	ToggleContent('products-full');
});

$('#closeImprint').click(function() {
	ToggleContent('imprint');
});

$('#closeProfile').click(function() {
	ToggleContent('profile-full');
});

$('#closeCompetence').click(function() {
	ToggleContent('competence-full');
});

$('#closeProducts').click(function() {
	ToggleContent('products-full');
});


function ToggleContent(ID){
	
	$('#'+ID+'').animate({
		opacity: 0.95,
		height: 'toggle',
		width: 'toggle'
		}, 500, function() {
		// Animation complete.
	});
}



});
