//onload
jQuery(document).ready(function() {
	jQuery(".csc-textpic").each(function() {
		//jQuery(this).find("dl").parent().hide();
		jQuery(this).find("dl:first").parent().show(); 
	});
});



jQuery(function(){

    //lang switcher toogle
    jQuery("#lang-display, #lang-chooser").click(function() {
        jQuery("#langs").toggle();
    });
    jQuery("#lang-chooser").show();
    
    //even/odd formating of lists
    jQuery(".list ul").each(function() {
        jQuery(this).children("li:odd").addClass("odd");
    });
    
    //anwendungen mouseover
    jQuery("#anwend img").hover(function() {
        if (!jQuery(this).attr("oldSrc")) {
            jQuery(this).attr("oldSrc", jQuery(this).attr("src"));
        }
        jQuery(this).attr("src", jQuery(this).attr("src").replace(/_off.png/, "_on.png"));    
    }, function() {
        jQuery(this).attr("src", jQuery(this).attr("oldSrc"));    
    });


});


