$(document).ready(function() {

	$('.jsReplace').each(function(){
		imgfile = $(this).attr('rel');
		$(this).html('<img src="/media/File/rev3/'+ imgfile +'" border=0>');
	});
	var rollimg = '';

	$('ul#topnav li a img, #nav_getsome').each(function(){
		thisimg = $(this).attr('src');
		tmpimg = thisimg.replace('_off', '_over');
		$("<img>").attr("src", tmpimg);

	}).hover(function(){
			rollimg = $(this).attr('src');
			newimg = rollimg.replace('_off', '_over');
			$(this).attr('src', newimg);
		},
		function(){
			$(this).attr('src', rollimg);
		}
	);


	$('ul#topnav li:not(.first)').before('<img src="/media/File/rev3/nav_pipe.png">').css('border', 'none');
});
