$(function()
{
	$('.currencyDropdown select').change(function(e)
	{
		if($(this).val() != '')
			$(this).parent('.currencyDropdown').submit();
	});
	
	$('.currencyDropdown .selectedCurrency').click(function(e)
	{
		$('.currencyDropdown .options').toggleClass('shown');
	});
	
	$('.currencyDropdown .options a').click(function(e)
	{
		e.preventDefault();
		
		var $value = $('.currencyDropdown input[name=c]');
		
		// Set value.
		var href = $(this).attr('href');
		$value.val(href.substr(1));
		
		$(this).parents('.currencyDropdown').submit();
	});
	
	$(document).click(function(e)
	{
		var $dropdown = $('.currencyDropdown').find('*');
		if($.inArray(e.target, $dropdown.toArray()) == -1)
			$('.currencyDropdown .options').removeClass('shown');
	});
});
