$(function(){
/***************************/

if ($("body#products").length) {
	$("#content h2").each(function(){
		//$(this).add($(this).next()).wrapAll("<div class='column'/>");
	});
	$(".column:even").each(function(){
		//$(this).add($(this).next()).wrapAll("<div class='row'/>");
	});
	
	$("#content ul").hide();
	$("#content h2").each(function(){
		$(this).attr("title","Click to reveal "+$(this).html() + " products").click(function(){
			$(this).next().toggle("fast");
		}).css("cursor","pointer");
	});

}


/***************************/
});
