function showRoll(obj, type) {
    jQuery("ul[showType]").hide();
    jQuery("ul[showType=" + type + "]").show();
    jQuery(obj).siblings().each(function(i) {
        jQuery(this).removeClass();
    });
    jQuery(obj).addClass("ck");
}
function showRoll2(obj, type) {
    jQuery("ul[show]").hide();
    jQuery("ul[show=" + type + "]").show();
    jQuery(obj).siblings().each(function(i) {
        jQuery(this).removeClass();
    });
    jQuery(obj).addClass("ck");
}
function showpinpai(obj, type) {
    jQuery("ul[pinpai]").hide();
    jQuery("ul[pinpai=" + type + "]").show();
    jQuery(obj).siblings().each(function(i) {
        jQuery(this).removeClass();
    });
}
function getFocus(obj) {
    jQuery(obj).addClass("hover");
}
function lostFocus(obj) {
    jQuery(obj).removeClass("hover");
}
