

$(document).ready(function(){
	$('[ph]').bind('focus',function(){
		if(this.value==$(this).attr('ph'))this.value="";
		$(this).removeClass('placeholder');
	}).bind('blur',function(){
		if(this.value==''){
			this.value=$(this).attr('ph');
			$(this).addClass('placeholder');
		}
	}).blur()
});