﻿document.writeln("<div style=\"width:970px;overflow:hidden; margin:0 auto;\">");
document.writeln("	<ul id=\"fourpic\">");
document.writeln("		<li><span>1<\/span>");
document.writeln("	<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\" width=\"970\" height=\"40\">");
document.writeln("      <param name=\"movie\" value=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1003\/xsd.swf\" \/>");
document.writeln("      <param name=\"quality\" value=\"high\" \/>");
document.writeln("  	<param name=\"wmode\" value=\"transparent\" \/> ");
document.writeln("      <embed src=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1003\/xsd.swf\" quality=\"high\" pluginspage=\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application\/x-shockwave-flash\" wmode=\"transparent\" width=\"970\" height=\"40\"><\/embed>");
document.writeln("    <\/object>");
document.writeln("<\/li>");
document.writeln("		<li><span>2<\/span>");
document.writeln("	<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\" width=\"970\" height=\"40\">");
document.writeln("      <param name=\"movie\" value=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1002\/2mgfy.swf\" \/>");
document.writeln("      <param name=\"quality\" value=\"high\" \/>");
document.writeln("  	<param name=\"wmode\" value=\"transparent\" \/> ");
document.writeln("      <embed src=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1002\/2mgfy.swf\" quality=\"high\" pluginspage=\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application\/x-shockwave-flash\" wmode=\"transparent\" width=\"970\" height=\"40\"><\/embed>");
document.writeln("    <\/object>");
document.writeln("<\/li>");

document.writeln("		<li><span>3<\/span>");
document.writeln("	<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\" width=\"970\" height=\"40\">");
document.writeln("      <param name=\"movie\" value=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1002\/3ccyx.swf\" \/>");
document.writeln("      <param name=\"quality\" value=\"high\" \/>");
document.writeln("  	<param name=\"wmode\" value=\"transparent\" \/> ");
document.writeln("      <embed src=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1002\/3ccyx.swf\" quality=\"high\" pluginspage=\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application\/x-shockwave-flash\" wmode=\"transparent\" width=\"970\" height=\"40\"><\/embed>");
document.writeln("    <\/object>");
document.writeln("<\/li>");


document.writeln("		<li><span>4<\/span>");
document.writeln("	<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\" width=\"970\" height=\"40\">");
document.writeln("      <param name=\"movie\" value=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1003\/2010dsjh.swf\" \/>");
document.writeln("      <param name=\"quality\" value=\"high\" \/>");
document.writeln("  	<param name=\"wmode\" value=\"transparent\" \/> ");
document.writeln("      <embed src=\"http:\/\/static.zongheng.com\/v2_0\/pic\/1003\/2010dsjh.swf\" quality=\"high\" pluginspage=\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application\/x-shockwave-flash\" wmode=\"transparent\" width=\"970\" height=\"40\"><\/embed>");
document.writeln("    <\/object>");
document.writeln("<\/li>");
document.writeln("	<\/ul>");
document.writeln("<\/div>");
document.writeln("<div class=\"spline\" style=\"height:4px\"><\/div>")

var t = n = 0, count = $("#fourpic li").size();
$(function(){ 
 $("#fourpic li").mouseover(function() {
  var i = $(this).text() - 1;
  n = i;
  if (i >= count) return;
  //$("#fourpic li").filter(":visible").fadeOut(0).parent().children().eq(i).fadeIn(500);
  $(this).css({"width":"970px"}).siblings().css({"display":"none"});
 });
 
 $("#fourpic li").mouseout(function() {
  var i = $(this).text() - 1;
  n = i;
  if (i >= count) return;
  //$("#fourpic li").filter(":visible").fadeOut(0).parent().children().eq(i).fadeIn(200);
  $(this).css({"width":"240px"}).siblings().css({"display":"block"});
 });
});