if (typeof EVERYZING == "undefined") EVERYZING = {};

// Pluralize search filter links
ezQuery(document).ready(function(){
	ezQuery(".ez-page-topic-2-col .ez-searchMod-filter-mediatype li a").each(function() {
	    var l = ezQuery(this);
	    //console.log(l.text());
	    if (l.text().indexOf('All') == -1) {
	        l.text(l.text() + "s");
	    }
	});		ezQuery("input#everyzing-search").removeAttr('disabled');
});
