$(document).ready(function(){
	
	// When click on product view info link, reveal info and change link content to hide info
	$('ul.product-list h4 a').click(function(e) {
		$(this).parent().next().slideToggle();
		
		if( $(this).text() == "view info" ) {
			$(this).text('hide info');
		} else {
			$(this).text('view info');
		}
		
		e.preventDefault();
	});
	
});