/* tyhjentää s-postiosoite-tekstin kentästä */

$(document).ready(function () {
    jQuery('#ie-osoitekentta').bind("focus", function(){
	if (this.value.match("postiosoite") == 'postiosoite' || this.value.match("Email address") == 'Email address') {
		this.value = '';
	}
    });
});

