Cufon.replace('#slogan, .step h3, .sidebar h3, .box1 h3', { fontFamily: 'Arial Narrow'} );
Cufon.replace('#navigation a', { fontFamily: 'Arial Narrow', hover: true } );
Cufon.replace('.featured-product .text-holder h2', { fontFamily: 'Arial Narrow', textShadow: '3px 3px 3px #505050' } );
Cufon.replace('.featured-product p', {fontFamily: 'Century Gothic' })

$(function(){
    $('.blink').
	    focus(function() {
	        if(this.title==this.value) {	
	            this.value = '';
	        }
	    }).
	    blur(function(){
	        if(this.value=='') {
	            this.value = this.title;
	        }
    });

	$('#navigation ul li').hover(	
		function(){
			if ( $(this).find('ul').length ) {
				 $(this).addClass('hover');
				 $(this).find('a:eq(0) span').prepend('<strong>&nbsp;</strong>');
				 $(this).find('ul').slideDown();
				 
			}
		},
		function() {
			$(this).find('ul').slideUp();
			$(this).find('a:eq(0) span strong').remove();
			$(this).removeClass('hover');
			Cufon.refresh('#navigation a');
		}
	);	
	
	
	$('.menu ul li').hover(
		function() { $(this).addClass('hover'); },
		function() { $(this).removeClass('hover'); }
	);
	
	$('.menu ul li a').click(
		function() {	
			$('.menu ul li').removeClass('active');
			$(this).parent().addClass('active');
			return false; 
		});
})







	

