$(window).load(function() {
	reset_field();
});

function reset_field(){
	$(".input-small").focus(function() {if(this.value == this.name){this.value="";}});
	$(".input-small").blur(function() {if(this.value==""){this.value = this.name;}});
	
	$(".input-std").focus(function() {if(this.value == this.name){this.value="";}});
	$(".input-std").blur(function() {if(this.value==""){this.value = this.name;}});	
}

function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName]
	}else {
		return document[movieName]
	}
}


