jQuery(document).ready(function(){

	Cufon.replace('#footer H4')('.main-content .comments H3')('#header .main-menu UL LI A', {
		hover: true
	});
	
	
	jQuery('INPUT.auto-hint').each(function(){
		if (jQuery(this).attr('value') == '') jQuery(this).attr('value', jQuery(this).attr('title'));
	});
	
	jQuery('INPUT.auto-hint').click(function(){
		if (jQuery(this).attr('value') == jQuery(this).attr('title')) jQuery(this).attr('value', '');
	});
	jQuery('INPUT.auto-hint').blur(function(){
		if (jQuery(this).attr('value') == '') jQuery(this).attr('value', jQuery(this).attr('title'));
	});

	
});


