function iscroll() {
   window.scrollTo(0,0);
  
   return(1);
  //find the height of the internal page
  var the_height=document.getElementById('eframe').contentWindow.document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('eframe').height=the_height;
  
    
}

function initTabs(obj) {
	//obj: ul.tabs
	$(obj).tabs("> .tabcontent", { 
		effect: 'fade',
		
		onBeforeClick: function(event, i) {
	
			// get the pane to be opened
			var pane = this.getPanes().eq(i);
	
			// only load once. remove the if ( ... ){ } clause if you want the page to be loaded every time
			if (pane.is(":empty")) {
	
				// load it with a page specified in the tab's href attribute
				pane.load(this.getTabs().eq(i).attr("href"), function() {
					$(".ceebox").ceebox();
				});
				
				
			}

	
		}
		
	});
	
}

$( function() {
	$('#nlemail').blur( function() {
			if ($(this).val()=='') $(this).val('Ihre Email-Adresse');
	}).focus( function() {
		if ($(this).val()=='Ihre Email-Adresse') $(this).val('');
	});
	$('#nlemail').blur();
	
});
