﻿function initRollup() {
	$('.rollUp div div:not(:first)').animate({height: 'toggle'});
	$('.rollUp div h3').bind('click',
		function() {
			$(this).parent().children('div').animate({height: 'toggle'}, 1000);
		}
	);
	$('.rollUp div h3').css('cursor', 'pointer');
}

