Cufon.replace('#main_menu a.m1', { fontFamily: 'Myriad Pro', hover: true });
Cufon.replace('h2', { fontFamily: 'Myriad Pro' });
Cufon.replace('h3', { fontFamily: 'Myriad Pro Light' });

$(document).ready( function() {
	
	$("input[type=text], textarea").focus( function() {
		if ( $(this).val() == $(this).attr("title") ) {
			$(this).val("")
		}
	}).blur( function() {
		if ( $(this).val() == '' ) {
			$(this).val( $(this).attr("title") );
		}
	});
	
});
