﻿$(document).ready(function() {
	//$('select').uniform();
	$('input[type=text]').bind('focus blur', function(){
		if (this.defaultValue == this.value) this.value = '';else if (this.value == '') this.value = this.defaultValue;
	}); 

});
