$(document).ready(function() {
	$('#stenden').live('click', function() {
		$('#stendenllnr').slideToggle(250);
	});
	
	$('input[type=text]').live('blur',function() {
		if (!$(this).val()) $(this).addClass('error');
		else $(this).removeClass('error');
	});
});
