$(document).ready(function() {
	$('.service_desc .full_text').hide();
	$('.service_desc .show').click(function() {
		$(this).parents('.teaser').siblings('.full_text').show();
		$(this).hide();
		return false;
	});
	$('.service_desc .hide a').click(function() {
		$(this).parents('.full_text').hide();
		$(this).parents('.full_text').siblings('.teaser').children('.show').show();
		return false;
	});
	
	$('.who_desc .full_text').hide();
	$('.who_desc .show').click(function() {
		$(this).parents('.teaser').siblings('.full_text').toggle();
		$(this).blur();
		return false;
	});
});