Cufon.replace('.blue-boxes h3');
Cufon.replace('.plan-box h3');

$(document).ready(function(){
	$('.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') })
			}
		});
		
	$('#nav li').hover(
		function(){
			var sub = $(this).find('.dd:eq(0)');
			if(sub.length == 0) return;
					
			sub.show();
			$(this).find('a:eq(0)').addClass('hover');
		},
		function(){
			var sub = $(this).find('.dd:eq(0)');
			if(sub.length == 0) return;
					
			sub.hide();
			$(this).find('a:eq(0)').removeClass('hover');
		}
	);
})
