/*<![CDATA[*/

$(document).ready(function(){

	$(".a-nav-top img").each(function(){
		$this 	= $(this);
		imgsrc 	= $this.attr("src");
		imgroll	= imgsrc.replace(/-off.gif$/ig,"-on.gif");
		$this.data('out-src', imgsrc);
		$this.data('over-src', imgroll);
		$("<img>").attr("src",imgroll);
	});

	$(".a-nav-top").mouseover(function(){
		var $img = $(this).children("img:first");
		$img.attr( 'src', $img.data('over-src') );
	});

	$(".a-nav-top").mouseout(function(){
		var $img = $(this).children("img:first");
		$img.attr( 'src', $img.data('out-src') );
	});

});

/*]]>*/
