$(function(){
	$("#sidebar_2 LI:nth-child(even)").addClass("even");
	
	$('.widget_aweber input[@name="name"]').addClass("name");
	$('.widget_aweber input[@name="from"]').addClass("from");
	$('.widget_aweber input:submit').addClass("btn");

	$('#accordion H2').click(function() {
		$(this).next().toggle(500);
		return false;
	}).next().hide();

	$("#feedback_list").innerfade({
		animationtype: 'fade',
		speed: 'fast',
		timeout: '50000000',
		type: 'random'
	});
	
	function equalHeight(group) {
		var tallest = 0;
		group.each(function() {
			var thisHeight = $(this).height();
			if(thisHeight > tallest) {
				tallest = thisHeight;
			}
		});
		group.height(tallest);
	}
	$(".products .tr").each(function() {
		equalHeight($(this).find('.product .p-content'));
	});
	
	$('.product .edition .what').tooltip({ 
	    delay: 0, 
	    showURL: false
	});
});


