﻿/* 「製品情報」をproductでなくproductinfoを表示させるredirect */
jQuery(document).ready(function(){
	var domainname = 'http://' + location.hostname + '/productinfo';
	jQuery(".breadcrumbs").each(function(){
		var anchors = jQuery(this).find("a[href$='product']");
		anchors.each(function(){
			jQuery(this).attr('href', domainname);
		});
	});
	jQuery('a[title*="FAQs"]').remove();
	jQuery('a[title*="Go to the"]').remove();
});


