﻿$(function(){initFun();})

function initFun(){
$("div#comifobox .fl li").click(function(){
$("div#comifobox .fl li.ck")[0].className=""; 
this.className ="ck"; 
var title = this.innerHTML;
$("div#comifobox .fr .conobj span").html(title);
$("div#comifobox .fr .con .title").html(title);

var cls = this.title;
$("div#comifobox .fr .con .val").html($("div#comifobox .fr .dn ."+cls).html());
});

}