jQuery(function($) {
	Cufon.replace('.cufon-replace, #sidebar h3', {
		fontFamily: 'Rdeluna'
	});
	$('.blink')
		.focus(function(){
			if( $(this).attr('value') == $(this).attr('title') ) {
				$(this).attr({ 'value': '' });
			}
		})
		.blur(function(){
			if( $(this).attr('value') == '' ) {
				$(this).attr({ 'value': $(this).attr('title') })
			}
		});
});