$(document).ready(function(){
	// hide long product description
	$(".product-list-features-long").hide();
	// make boxes equal height
	if ($("#product-list-artist .product-list-features").syncHeight)
		$("#product-list-artist .product-list-features").syncHeight();
	if ($("#product-list-agency .product-list-features").syncHeight)
		$("#product-list-agency .product-list-features").syncHeight();
	// simulate :hover in IE6 (should later go into a separate file) 
	$('.product-list-head').hover(function(){
		$(this).addClass("hover");
	},function(){
		$(this).removeClass("hover");
	});
		
	
	$('.product-list-head').click(function(){
		$(this).toggleClass('expanded');
		$(this).parent().find('.product-list-features-short').toggle();
		$(this).parent().find('.product-list-features-long').toggle();
	});
});