﻿$(function(){
	$('div.products').not(':first').show().children(':not(":first-child")').not('.prodMoreInfo').css({height:'28px',lineHeight:'14.5px', overflow:'hidden', float:'left'}).next('p').hide();
	$('a.prodMoreInfo').click(function(){
		if(this.parentNode.className == 'products hidden1'){
			$('div.hidden1').children(':not(":first-child")').not('.prodMoreInfo').css({height:'auto', overflow:'visible', float:'left'}).next('p').show();
			$(this).hide();
		}
		else if(this.parentNode.className == 'products hidden2 last'){
			$('div.hidden2').children(':not(":first-child")').not('.prodMoreInfo').css({height:'auto', overflow:'visible', float:'left'}).next('p').show();
			$(this).hide();
		}
		return false;
	});
});