function switchLanguage (lang) {
	eraseCookie('att_lang');
	createCookie('att_lang', lang, 365);
	location.href = location.href;
}

$(document).ready(function(){
	// IE :after fix
	if ($.browser.msie) {
		$('#footer .nav li:not(.last)').append(' | ');
	}
    $('.thickbox').each(function () {
		if ('privacy-link' == $(this).attr('id')) {
			var url = $(this).attr('href') + '?TB_iframe=true&modal=true&height=340&width=590';
		} else if ('rss-link' == $(this).attr('id')){
			var url = $(this).attr('href') + '?TB_iframe=true&modal=true&height=340&width=590';
		} else {
			var url = $(this).attr('href') + '?TB_iframe=true&modal=true&height=536&width=748';
		}
		$(this).attr('href', url);
    });
    
    $('#englishLink').click( function () {
        switchLanguage('english');
        return false;
    });
    $('#frenchLink').click( function () {
        switchLanguage('french');
        return false;
    });
});
