$(function(){
	
	var path = location.pathname;
	path = path.replace(/\/shop\/products\//, '/shop_products/');
	path = path.replace(/\/guide\/order/, '/order');
	$('#gnav_eminet li a').each(function(){
		thref = $(this).attr('href')
		thref = thref.replace(/\/shop\/products\//, '/shop_products/');
		thref = thref.replace(/\/guide\/order/, '/order');
		if(path.match(thref) != null){
			$('img',$(this)).removeClass('imgover');
			isrc = $('img',$(this)).attr('src');
			isrc = isrc.replace(/^([^.]+)\.(jpg|gif)$/, '$1_on\.$2');				
			$('img',$(this)).attr({src: isrc});
		}
	});
	
});

