$(document).ready(function(){

	$('#yanchu #smallpic li').mouseover(function(){

		//alert('sdfsdf');

		$('#yanchu div.bigpic').html($(this).find('dd.bigpic').html());

		$('#yanchu div.listcon').html($(this).find('dd.listcon').html());

		$('#yanchu div.btn_play').html($(this).find('dd.btn_play').html());

		$('#yanchu #smallpic li').removeClass('current');

		$(this).addClass('current');

		//$(this).next().toggle();

	//this.parentNode.getElementsByTagName("dd")[0].toggle();

		}

	);

	$('#yanchu #smallpic li.current').mouseover();
	setInterval(function() {
	var o=$('#yanchu #smallpic li.current').next();
	if(o.length>0){
                    o.mouseover();
					}else{
					var p=$('#yanchu #smallpic li:first-child');
					p.mouseover();
					}
                }, 3000);

	}

);