$(function () {
	// headerNav rollover script
	
	$('.headerNav DIV[rel]').hover(function () {
		$(this).addClass('hover');
		$relatedRollover = $('#' + $(this).attr('rel'));
		$relatedRollover.show();
	}, function () {
		$(this).removeClass('hover');
		$relatedRollover = $('#' + $(this).attr('rel'));
		$relatedRollover.hide();
	});
});

