
			$(function() {
				$('div.headlineItem').hover(
					function () {
						$(this).addClass('headlineRed');
						$(this).children().each(
							function () {
								if ( $(this).hasClass('headlineDate') ) {
									$(this).addClass('headlineDateRed');
								}
								else if ( $(this).hasClass('headlineSummary') ) {
									$(this).children().each(
										function () {
											if ( $(this).hasClass('hs') ) {
												$(this).addClass('headlineHover');
											}
										}
									);
								}
							}
						);
					},
					function () {
						$(this).removeClass('headlineRed');
						$(this).children().each(
							function () {
								if ( $(this).hasClass('headlineDate') ) {
									$(this).removeClass('headlineDateRed');
								}
								else if ( $(this).hasClass('headlineSummary') ) {
									$(this).children().each(
										function () {
											if ( $(this).hasClass('hs') ) {
												$(this).removeClass('headlineHover');
											}
										}
									);
								}
							}
						);
					}
				);
			});
