$.fn.extend({     
   AdAdvance:function(){
	var listobj=this;
        var objs =$('dt',this);
	var view =0;//parseInt( Math.random()*objs.length);
	objs.each(function(i){
	
		$(this).mouseover(function(){$('dd',listobj).hide();$(this).next().show();$('dt',listobj).show();$(this).hide();})
		$(this).mouseout(function(){$(this).show();});
	});
	
		$("#splitadver_new dl dd").each(function(){
												 $(this).mouseover(function(){$(this).prev("dt").hide()});
												 })
		
		$("#splitadver_new dl dt:first").hide();
		$("#splitadver_new dl dd:first").show();
    }
}); 

