/**
 * @author Jon Ege Ronnenberg joro32
 */
jQuery(function($){
	Telia.toggleValue = function(elem){
		$(elem).focus(function(e){
			if(this.defaultValue === this.value){
				this.value = "";
			}
		});
		$(elem).blur(function(e){
			if(this.value === ""){
				this.value = this.defaultValue;
			}
		});	
	}	
});