$(document).ready(function(){
	$('input').each(function(){
		if($(this).attr('placeholder') != ''){
			//$(this).attr('type', 'text');
			$(this).val($(this).attr('placeholder'));
		}
	});
});
