$(function() {

	$('#top-nav li:not(:last)').after('<li class="divider">|</li>');
	$('#footer li:not(:first , :last)').after('<li class="divider">|</li>');
	$('.service ul li:last-child').addClass('last');
	$('.country-dropdown-middle .middle ul.countries li.other').css('border','0');

	$('#s1').before('<div id="nav">').cycle({ 
    		fx             : 'fade', 
    		speed          : 1000, 
    		timeout        : 5000, 
    		pager          : '#nav',
    		cleartypeNoBg  : true
	});

	$('#nav a').click(function(){
		$('#s1').cycle('pause');
	});
	
	$('li.country > a').click(function(e){
		e.preventDefault();
		$(this).next().toggle();
	});
//	
//	$('.country-dropdown-middle .middle ul li.other a').click(function(e){
//		e.preventDefault();
//		$(this).next().toggle();
//	});
	
});


function changeCountry(select) {
	
	var value = select.value;
	if(value.length > 0)
		document.location.href = select.value;

}


