function changeCaptions() {
	theCurr = $.cookie('currency');
	theLang = $.cookie('language');
	$('#captions .' + theCurr).show();
	$('#captions .' + theLang).show();
}

function changeLang(theLang) {
	$('.en,.de,.fr,.it').hide();
	$('.' + theLang).show();
	$.cookie('language', theLang, {path:'/'});
}

function changeCurrency(theCurrency) {
	$('.eur,.gbp,.usd,.jpy').hide();
	$('.' + theCurrency).show();
	$.cookie('currency', theCurrency, {path:'/'});
}

function loadLang() {
	var theLang = '';
	if (theLang = $.cookie('language')) changeLang(theLang);
	else changeLang('en');
}
function loadCurrency() {
	var theCurrency = '';
	if (theCurrency = $.cookie('currency')) changeCurrency(theCurrency);
	else changeCurrency('eur');
	$("[name='currency']").val(theCurrency);
}

function changeTime() {
	if (!$('#time_en').length) return;
	$('#time_en').strftime('%d %B %Y');
	$('#time_de').strftime('%d.%m.%Y');
	$('#time_fr').strftime('%d.%m.%Y');
	$('#time_it').strftime('%d.%m.%Y');
//	alert( $.strftime( ) );
}


$(document).ready(function(){
 	changeTime();
	loadLang();
 	loadCurrency();
});

