$(document).ready(function(){
	if($.cookie('jumptolang')){
		window.location = $.cookie('jumptolang');
	}	

	$('.CountryList a').click(function(event){
		if($('#remember').attr('checked')){
			event.preventDefault();
			$.cookie('jumptolang', $(this).attr('href'));
		}
		window.location = $(this).attr('href');	
	});

	$('.HasSubLang').attr('href', "#").click(function(event){
		$(this).siblings('a').toggleClass('hide');
	});
    
    ChangeBg(2);
	function ChangeBg(eq){
		setTimeout(function(){
			var bg = $('.bg')
			if(eq > parseInt(bg.attr('alt'))){ eq = 1; }
			bg.attr('src', '/layouts/CountrySelect/images/bg/bg_' + eq + '.jpg');
			ChangeBg(eq+1);
		}, 3000);
	}
});	
