<script type="text/javascript">
$(function(){
var num = 2
var timer1
$(".cB_hd li").mouseover(function(){
$(this).addClass("curNum1").siblings().removeClass();
$(".cB_bd li").eq($(this).index()).addClass("curImgB").siblings().removeClass();
num = $(this).index() + 1;
})
function autoplay(){
if( num == 3){
num = 0 ;
}
$(".cB_hd li").eq(num).addClass("curNum1").siblings().removeClass();
$(".cB_bd li").eq(num).addClass("curImgB").siblings().removeClass();
num++;
}
timer1 = setInterval(autoplay,3200)
$(".conBanner li").mouseover(function(){
clearInterval(timer1);
}).mouseout(function(){
timer1 = setInterval(autoplay,3200)
})
})
$(document).ready(function() {
changeImg();
});
//307 330
function changeImg(){
var width=$('#img88').width();
var height=$('#img88').height();
if(width>height && width>400){
height=400*height/width;
width=400;
$('#img88').width(width);
$('#img88').height(height);
}else if( height>width && height>400){
width=400*width/height;
height=400;
$('#img88').width(width);
$('#img88').height(height);
}
//alert(width+"----------"+height);
}
</script>
08-15