jQuery(document).ready(function($) {
	$('ul.product-listing a.more').hide();
	$('ul.product-listing p.price').hide();
	$('ul.product-listing div.price-box').hide();
	$('ul.product-listing div.featured').hide();
	$('ul.product-listing a').css('color', '');
	
	// equalize heights of blog thingies on team pages
	var maxHeight = 0;

	$("div.team-content ul.blog-post-list li").each(function(){
	   if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
	});

	$("div.team-content ul.blog-post-list li").height(maxHeight);
});

function decorateGeneric()
{
	// do nothing here, because this is some bullcrap js that comes with the magento garbage
}

