spd = 500;
$('document').ready(function() {
	$('.productInfoTitles a').each(function() {
		if ($(this).attr('class')!='description') $('.productInfoBox .'+$(this).attr('class')).css('display','none');
		$(this).click(function(e){
			e.preventDefault();
			$('.productInfoBox').children('div').not('.'+$(this).attr('class')).css('display','none');
			$('.productInfoBox .'+$(this).attr('class')).fadeIn(spd);
		});
	});
});