var time_out_id = null;

function link_rotation_home(){
	clearTimeout ( time_out_id );
	var dst= $('image-link');
	if ($defined(dst)){
		dst.load('/template/custom/list_link_home.php');
	}	
	time_out_id = setTimeout ( 'link_rotation_home()', 5000 );
};

window.addEvent('domready', function() {
	link_rotation_home();
});

