var TDCycle = function(b) {
	var c = {};
	this.options = $.extend(c, b);
	var a = this;
	a.i = 0;
	$(this.options.ControlSel).mouseover(function() {
		$(a.options.ImgContainerSel).hide();
		$(this).next(a.options.ImgContainerSel).eq(0).show()
	})
};
$(document).ready(function() {
	var d = new TDCycle( {
		ControlSel : "#top5 .col_txt",
		ImgContainerSel : "#top5 .floor_ad_img"
	});
	var e = new TDCycle( {
		ControlSel : "#top6 .col_txt",
		ImgContainerSel : "#top6 .floor_ad_img"
	});
});

