function swaphomeimg(){
	homeimg <= 6 ? next = homeimg + 1 : next = 1;
	$('#homeimg'+homeimg).fadeOut('slow');
	$('#homeimg'+next).fadeIn('slow');
	homeimg=next;
	timer = setTimeout('swaphomeimg()',4000);
}

function swapdealimg(){
	dealimg <= 9 ? next = dealimg + 1 : next = 1;
	$('#deal'+dealimg).hide();
	$('#deal'+next).fadeIn('slow');
	dealimg=next;
	timer = setTimeout('swapdealimg()',4000);
}