function initRollOverImages() {
	var image_cache = new Object();
	$(".rollover a img").not("[src*='-on.']").each(function(i) {
		var imgsrc = this.src;
		var dot = this.src.lastIndexOf('.');
		var imgsrc_on = this.src.substr(0, dot) + '-on' + this.src.substr(dot, 4);
		image_cache[this.src] = new Image();
		image_cache[this.src].src = imgsrc_on;
		$(this).hover(
			function() { this.src = imgsrc_on; },
			function() { this.src = imgsrc; }
		);
	});
}
$(document).ready(initRollOverImages);

$(document).ready(function(){
		$('li.headlink').hover(
			
			function() { $('ul', this).css('display', 'block'); 
				if (!($('li.headlink').hasClass("current"))) {
					$(this).css('background', 'url(/images/nav/arrow-outlined.png) no-repeat right'); 
				}
			},
			function() { $('ul', this).css('display', 'none'); $(this).css('background', 'none'); 
		});
			
			
});


$(document).ready(function(){
		$('li.headlink2').hover(
			
			function() { $('ul', this).css('display', 'block'); 
				if (!($('li.headlink2').hasClass("current"))) {
					$(this).css('background', 'url(/images/nav/arrow-outlined.png) no-repeat right'); 
				}
			},
			function() { $('ul', this).css('display', 'none'); $(this).css('background', 'none'); 
		});
			
			
});


