/* Author:

*/

$(document).ready(function(){
	$('.toggle').each(function(i,elm) {
		$(this).focus(function(event){
			if($(this).val() == $(this).attr('title')){
				$(this).val('');
			}
		}).blur(function(event){
			if($(this).val() == ''){
				$(this).val($(this).attr('title'));
			}
		});
	});
});






