var array1 = [];
var a = 0;

function startShow() {
	$(array1[a]).fadeOut(2000);
	if(a == array1.length - 1) { a = 0; } else { a++; }
	$(array1[a]).fadeIn(2000, function() { setTimeout("startShow()", 4000); });
}

$(document).ready(function() {
	if($('#table')) {
		$('#table').tablesorter({
			widthFixed: true,
			sortList: [[0,0]],
			widgets: ['zebra']
		}).tablesorterPager({ container: $('#pager'), size: 20 });
	}

	if($('#tablecart')) {
		$('#tablecart').tablesorter({
			widthFixed: true,
			headers: { 0: { sorter: false}, 1: {sorter: false} , 2: {sorter: false} },
			widgets: ['zebra']
		});
	}

	$("#banner_pix img").each(function() { array1.push(this); });
	setTimeout("startShow()", 3000);


	$("#brand_box").simplyScroll({ autoMode: 'loop' });
});
