(function($) { 

	// Image rollover
	$('img.hover[src], input.hover[src]').live('mouseover mouseout', function(event) {
		var hovimgend = "_on";
		var pattern = /\.(jpg|jpeg|png|gif)$/;
		var imgsrc = $(this).attr("src");
		var extmatch = imgsrc.match(pattern)[0];
		var matches = imgsrc.match(/hovimgend/);
	
		if (!matches && event.type == 'mouseover') {
			$(this).attr("src", imgsrc.replace(pattern, hovimgend + extmatch));
		}
		else {
			$(this).attr("src", imgsrc.replace(hovimgend + extmatch, extmatch));
		}
	
		$(window).bind( 'unload', function(){
				$(this).attr("src", imgsrc.replace(hovimgend + extmatch, extmatch));
		});
	});

})(jQuery);

/*--------------------パンくず--------------------*/

$(document).ready(function() {
	$("#breadcrumbslist").slidebreadcrumbslist({
		speed: 700,
		delay: 0,
		interval: 0,
		easing: "swing"
	});
});

    $(function(){
     $(".open1").click(function(){
      $("#slideBox1").slideToggle("slow");
     });
});
    $(function(){
     $(".open2").click(function(){
      $("#slideBox2").slideToggle("slow");
     });
});
