/*
$(document).ready(function(){

	$('.blurtext').each(function() {
	    $(this).attr('value', $(this).attr('title'));
	});


	$('.blurtext').focus(function() {
		if($(this).attr('value') == $(this).attr('title')) {
			$(this).attr('value', '');
		}
	});

	$('.blurtext').blur(function() {
		if($(this).attr('value') == '') {
			$(this).attr('value', $(this).attr('title'));
		}
	});

});
*/

