function initClick() {	
	$('.clickableRow').hover(function() {
		$(this).addClass('hover');
	},function() {
	   $(this).removeClass('hover');
	});
	
	$('.clickableRow h4').click(function() {
		if ($(this).parent().hasClass('opened')) {
			$(this).parent().removeClass('opened');
		} else {
			$(this).parent().addClass('opened');
		}
	});
}

