	$(function() {
		$("#menu ul span").css("opacity","0");
		$("#menu ul span").hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, 250);
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, 250);
		});
	});
	
/**** ZEBRA STRIPING ****/
$(document).ready(function(){
	$("#results li:odd").addClass("alt");
	$(".propinfo li:odd").addClass("alt");
});
