// give any textual input the class of input_placeholder and this will swap the title with empty text, and empty the input on focus if value = title
$(document).ready(function(){
	$('.title_placeholder').each(function(){
		if ($(this).val().replace(' ', '') == '') {
			$(this).val($(this).attr('title'));
		}
		$(this).blur(function(){
			if ($(this).val().replace(' ', '') == '') {
				$(this).val($(this).attr('title'));
			}
		});
		$(this).focus(function(){
			if ($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}
		});
	});
});


