/************************************************

	Listing Module JS

	/includes/js/groups/listing.js

	Copyright © DailyStrength, 2008.

***/

function hideListingTab(filter_name) {
	var url = document.location.toString();
	if(url.match('#')) {
		if(!document.tabShown && (url.split('#')[1] == filter_name)) {
			document.tabShown = true;
		}
		else {
			$("#filtertab_"+filter_name).hide();
		}
	} else if (document.tabShown) {
		$("#filtertab_"+filter_name).hide();
	} else {
		document.tabShown = true;
	}
}

$().ready(function() {
	
	$('div.listing').each(function(){
		
		if(document.location.toString().match("#"))
			$.scrollTo(0, 0);
		
		$(this).anchorNav({ 
			nav: '#' + $(this).attr('id') + ' ul.filters', 
			anchorClass: "filter_anchor"
		});
		
	});
	
});