﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here
		/*** miniAtlas - Language Selector ***/
		var widthAdjust = 100;
		var langSelectWidth = $('#lang-select').innerWidth() - widthAdjust;
		var lineWidth = 0;
		$('#lang-select ul li').each(function() {
			lineWidth += ( $(this).innerWidth() + parseInt( $(this).css('margin-left') ) );
			if (lineWidth > langSelectWidth) {
				lineWidth = 0;
				$(this).addClass('lang-select-clean');
			}
		});
		$('#lang-select ul li:last-child').addClass('last-child');
		/*** End miniAtlas - Language Selector ***/
	}); 
})(jQuery);
(function($) {
	$(document).ready(function() {
		/*** Latest News ***/		
		$('.sf_newsList li:last-child').addClass('last-child');
		/*** End Latest News ***/
	}); 
})(jQuery);
