// Options for More Info links on featured listings
// Based on jQuery pack, as the left nav

$(document).ready(function() {
	
	// show the More div on a mouse click
	$(".featuredlisting > p > a.more").click(function() {
		
		var thislink = this,
		moreinfodiv = $(this).parent().next(".moreinfo");
		
		if (moreinfodiv.css('display') == 'none') {
			moreinfodiv.slideDown(500);
			thislink.innerHTML = "Less &lt;";
		} else {
			moreinfodiv.slideUp(500);
			thislink.innerHTML = "More &gt;";
		}
	});
});