
$(document).ready(function(){

	$('a.jp').click(function(){
		$('select.currency option:selected').removeAttr('selected');
		$('select.currency').fadeIn('slow');
		//$('.currency').removeAttr('display');
		$('select.currency').val('Japanese Yen');
		
		window.location = "http://www.ayakawa.com/index.php?_g=sw&r=%2Findex.php%3F_a%3DviewDoc%26amp%3BdocId%3D10&currency=JPY";
		
		//alert('Japanese Yen');
	});
	
	$('a.en').click(function(){
		$('select.currency option:selected').removeAttr('selected');
		$('select.currency').fadeIn('slow');
		//$('.currency').removeAttr('display');
		$('select.currency').val('US Dollars');
		
		window.location = "http://www.ayakawa.com/index.php?_g=sw&r=%2Findex.php%3F_a%3DviewDoc%26amp%3BdocId%3D10&currency=USD";
		
	});
	
});