$(function(){
	
	// Search Form
	
	$('#search input').each(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('name'));
		}
	}).focus(function () {
		$(this).removeClass('inputerror');
		if ($(this).val() == $(this).attr('name')) {
			$(this).val('');
		}
	}).blur(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('name'));
		}
	});
	
	Cufon.replace('h1.title, h1.f-title');
	Cufon.replace('#menu li a');
});
