var products = {
	init: function() {
		$('.productMoreInfo').hide();
		
		$('.showExtraInfo a').click(function() {
			var targetContainer = $(this).parent().prev('.productMoreInfo');
			if (targetContainer.css('display') == 'none') {
				targetContainer.slideDown('medium');
				$(this).html('Hide extra information').blur();
			} else {
				targetContainer.slideUp('medium');
				$(this).html('More information').blur();
			}
			
			return false;
		});
		
	}
	
}