jQuery(function($) {
	// Hide/show sliders
	$("div.sh_show").click(function() {
		$(this).next(".sh_hide").slideToggle("fast");//.siblings("dd").slideUp("fast");
	});

	// Alternating table row colors
	$("table.listing").each(function() {
		$(this).find("tr").each(function(index) {
			if (index % 2 == 0) {
				$(this).addClass('even');
			} else {
				$(this).addClass('odd');
			}
		});
	});
	
});
 

