$(document).ready(function() {
    $("#List1_1 li img").each(function(index) {
        $(this).click(function() {
            playId(index)
        })
    })
   $("#List2_1 li img").each(function(index) {
        $(this).click(function() {
            playId(index)
        })
    })
	
	$.ajax({
	type:"post",
	url:"../php/read.php",
	dataType:"json",
	success:function(json){
	// alert("共收录视频"+json+"条");
	 $("#videoCount").html("共收录视频"+json+"部");
	}
	})
	
})
function playId(num) {
    var tempr = showvideo(VideoArr[num], 521, 311);
    document.getElementById("video").innerHTML = tempr;
    var temp = "<a href='" + LinkArr[num] + "' target='_self'>" + TitArr[num] + "</a>";
    $("#video_title").html(temp)
}
function showvideo1(u, w, h) {
    var swf_width = w;
    var swf_height = h;
    var files = u;
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + swf_width + '" height="' + swf_height + '">');
    document.write('<param name="movie" value="http://www.lawtv.com.cn/images/vcastr22.swf"><param name="quality" value="high">');
    document.write('<param name="menu" value="false"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"/>');
    document.write('<param name="FlashVars" value="vcastr_file=' + files + '&IsAutoPlay=1">');
    document.write('<embed src="http://www.lawtv.com.cn/images/vcastr22.swf" wmode="transparent" allowFullScreen="true" FlashVars="vcastr_file=' + files + '&IsAutoPlay=1" menu="false" quality="high" width="' + swf_width + '" height="' + swf_height + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
    document.write('</object>')
}
function showvideo(u, w, h) {
    var swf_width = w;
    var swf_height = h;
    var files = u;
    var temp = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + swf_width + '" height="' + swf_height + '">';
    temp = temp + '<param name="movie" value="http://www.lawtv.com.cn/images/vcastr22.swf"><param name="quality" value="high">';
    temp = temp + '<param name="menu" value="false"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"/>';
    temp = temp + '<param name="FlashVars" value="vcastr_file=' + files + '&IsAutoPlay=1">';
    temp = temp + '<embed src="http://www.lawtv.com.cn/images/vcastr22.swf" allowFullScreen="true" FlashVars="vcastr_file=' + files + '&IsAutoPlay=1" menu="false" quality="high" width="' + swf_width + '" height="' + swf_height + '" type="application/x-shockwave-flash" wmode="transparent"  pluginspage="http://www.macromedia.com/go/getflashplayer" />';
    temp = temp + '</object>';
    return temp
}
function strCheck(str, spetor, num) {
    var temp;
    str = $.trim(str);
    if (str.substring(str.length - num, str.length) == spetor) {
        str = str.substring(0, str.length - num)
    }
    temp = str.split(spetor);
    return temp
}

//首页换肤
$(function(){
	$('#skin li').click(function(){
		$("#"+this.id).addClass("selected").siblings().removeClass("selected");
		$("#imageField").attr("src","http://www.lawtv.com.cn/images2010/"+(this.id)+".gif");
		$('#skinCss').attr("href","http://www.lawtv.com.cn/style2010/"+(this.id)+".css");
		});
	});
