$(document).ready(function(){
	// this is all i need but need to build the cycler instead
	$(".tooltip").mouseover(function() {
		$(this).css('z-index','99999').addClass('over');
	});
	
	$(".tooltip").mouseout(function() {
		$(this).css('z-index','9999').removeClass('over');
	});
	
	$("#featured-properties").thumbPager({});
	
	$(".tooltip").css('z-index','1');
});
	