MJL.event.add(window, "load", function(event){
	var curr_val = '#site-top img[src$="ng_home.gif"], #program img[src$="ng_program.gif"], #channel img[src$="ng_channel.gif"], #movie img[src$="ng_movie.gif"], #kuchikomi img[src$="ng_kuchikomi.gif"]';

	$(curr_val).each(function(){
		$(this).parent().parent().addClass('unroll');
		$('#nav-global ul li.unroll img').each(function(){
			var img_current = $(this).attr('src').replace(/([^/]*?).gif/, "$1_o.gif");
			$(this).attr('src', img_current);
		});
	});
}, false);

