

$(document).ready(function(){
	//email-field
    $("#feedback_mail").focus(function(){
        if (this.value == "email") {
            this.value = '';
        }
    });
    $("#feedback_mail").blur(function(){
        if (this.value == '') {
            this.value = "email";
        }
    });
    
	//user-name field
    $("#feedback_user").focus(function(){
        if (this.value == "name") {
            this.value = '';
        }
    });
    $("#feedback_user").blur(function(){
        if (this.value == '') {
            this.value = "name";
        }
    });
	
	//TODO: seperate from clear form stuff
	//This is to round those corner 
	$("#userFeedback").corner();
	$(".rounded").corner();
    
});
