﻿/** FONTSETTINGS **/
Cufon.replace(['#schools a','#utbmenu a'], {
    fontFamily: 'Futura Std',
    hover: {
        color: '-linear-gradient(white, white)'
    }
});

/*Cufon.replace(['.coworktype span', '.refspan span', '#menu a', '.co-details p', '#contact p', '#copyright p', 'span.type'], {
fontFamily: 'Trade Gothic LT STD'
});*/





getNewsList = function() {

    $.ajax({
        type: "POST",
        url: "/Ajax.aspx",
        data: { getNewsList: "now" },
        success: function(resp) {
            $("#newslist").html(resp);
            Cufon.refresh();
        }
    });
}



changeeducation = function() {
    var value = $("#ddl").val();
    if (value != "-1") location.href = value;
}
