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