/*
	Asktek scriptfil 
*/




/*
 * Clear Default Text: functions for clearing and replacing default text in
 * <input> elements.
***** jQuery *****
 * by Øystein Kjosavik, http://www.asktek.no/
 */
 
$at=jQuery.noConflict();
$at('document').ready(function () {
		$at('.cleardefault').each(function() {
			var default_value = this.value;
			$at(this).focus(function() {
				if(this.value == default_value) {
					this.value = '';
				}
			});
			$at(this).blur(function() {
				if(this.value == '') {
					this.value = default_value;
				}
			});
		});
	});
	
