jQuery.noConflict();
var texting;

jQuery(document).ready(function() {

		jQuery(".powermail_text").focus(function (){
				texting = jQuery(this).val();
				
				jQuery(this).val("");
				
		});
		jQuery(".powermail_text").blur(function (){
				
				var neuertext = jQuery(this).val();
				if (neuertext==""){
					jQuery(this).val(texting);
				} else {
				
				}
				
		});
		
		
		
		var contentBox = jQuery("#contentBox").height();
		var typoContent = jQuery("#typoContent").height();
		
		var nHeight = contentBox-(typoContent+72);
		
		// jQuery("#underContent").css({ "margin-top" : nHeight });
		
		
  
});
