
jQuery.noConflict();

jQuery(document).ready(function(){
  colsheight();
  fielder ();
});


function colsheight(){
  var contentheight= jQuery("#content").height();
  var mheight= jQuery("#window_marginal").height();
  if( contentheight > mheight ){
    jQuery("#window_marginal").height(contentheight);
  }
}


function fielder () {
  jQuery('input#nlquick_email').example(function() {
    return jQuery(this).attr('title');
  });
}

/* bildbrowser */
function aclick(anchor_id) {
	var a = document.getElementById(anchor_id);
	mainLightbox.start(a);
}

function hide(id) {
	document.getElementById(id).style['display'] = "none";
}