var scrollInterval = 2000;
var scrollSpeed = 400;

function scrollInit(targ)
{
	setInterval(function(){
					$('.scroll-item:first', targ).slideUp(scrollSpeed, function(){
																			  var el = $('.scroll-item:first', targ).appendTo(targ);
																			  el.show();
																			  });
				}, scrollInterval);
}

$(document).ready(function(){
	$('#hotjobs').load('hotjobs.aspx', function(){ scrollInit($('.scroller:first')) });
	$('#matches').load('matches.aspx', function(){ scrollInit($('.scroller:last')) });
});