/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function() {
    var cur_icon = $("#site_icon img:first").attr("src");
    $("#navi > li").each(function(index, elem) {
       $(elem).hover(
        function(){
           $("#site_icon img:first").attr("src", "fileadmin/templates/assets/img/icon_" + elem.id + ".gif");
        },
        function() {
           $("#site_icon img:first").attr("src", cur_icon);
        });
        if($($(elem).children()[0]).hasClass("nav_active")){
            $("#ct_wrapper").css("background", "url(fileadmin/templates/assets/img/wm_" + elem.id + ".gif) no-repeat");
        }
//       alert(className);
       //$(elem).attr("className", className);
    });
    
});




