﻿// JScript 文件
jQuery(function($){
    var height=$("#c_m_l_main").css("height");
    if(height!=null)
    {
        height=height.substring(0,height.indexOf("x")-1);
        if(height<360)
        {
            $("#c_m_l_main").css("height","360px");        
        }
    }
    
});

