$(function() { 

	// EditBox
/* 	if($('body').hasClass('start')) {
		var url = 'layerbox.htm';		
		$.get(url, function(resp) { 
			editBox(resp);
		});			
		return false;
	}; */
	
});

// EditBox aufrufen
function editBox(resp) { 
	$('html, body').addClass('height');
	$('.editbox, .editboxbg').remove();
	$('<div />').addClass('editboxbg').css({ opacity: 0.7 }).appendTo('body');
	$('<div />').appendTo('body').addClass('editbox').html(resp);	
	
	$('<a title="close" class="closeeditbox" href="#"></a>')
		.appendTo('.editbox')
		.click(function() { 
			$('.editbox, .editboxbg').remove(); 
			return false; 
		});		
};