function mercato_font_embed(){

	Cufon.replace('#tagline', {
		fontFamily: 'Wendy LP'
		
	});
	/*Cufon.replace('#switch a', {
		fontFamily: 'Fontin Sans Rg'
	});

	/*Cufon.replace('.pageHeading', {
		fontFamily: 'Fontin Sans Rg'
	});*/

		
	/*Cufon.replace('#menu .infoBoxContents a', {
		fontFamily: 'Fontin Sans Rg',
		hover: true

	});*/
	
		
	/*Cufon.replace('.productListing-data-1 a', {
		fontFamily: 'Fontin Sans Rg',
		hover: true
	});*/

}



var lang;

	$(document).ready(function() {
							  
		lang = (lang == null)? "EN" : lang ;

		 if(lang != 'JP'){
			 mercato_font_embed();
		 }
							   	
		$('#japanese').click(function() {
			lang = "JP";									  
		  	remove_cufon('#tagline');
			remove_cufon('#switch a');
		    remove_cufon('.pageHeading');
		    remove_cufon('#menu .infoBoxContents a');
		    remove_cufon('.productListing-data-1 a');   
		   /*return false;*/
		  
		});
	
	});
	
	
	
	function remove_cufon(selector) {
		$(selector).html( cufon_text(selector) );
		return true;
	}
	
	function cufon_text(selector) {
		var g = '';
		$(selector +' cufon cufontext').each(function() {
			g = g + $(this).html();
		}); 
		return $.trim(g);
	}
	


