

//　ロールオーバー
function smartRollover() {  
     if(document.getElementsByTagName) {  
         var images = document.getElementsByTagName("img");  
         for(var i=0; i < images.length; i++) {  
             if(images[i].getAttribute("src").match("_off."))  
             {  
                 images[i].onmouseover = function() {  
                     this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));  
                 }  
                 images[i].onmouseout = function() {  
                     this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));  
                 }  
             }  
         }  
     }  
 }  
 if(window.addEventListener) {  
     window.addEventListener("load", smartRollover, false);  
 }  
 else if(window.attachEvent) {  
     window.attachEvent("onload", smartRollover);  
 }  

//アコーディオン
 $(document).ready(function(){

	$(".toggle_container").hide();

	$("h3.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	$("h3.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});

});

//ページスクロール
$(function(){
	$("a[href^=#]").click(function(){
		var Hash = $(this.hash);
		var HashOffset = $(Hash).offset().top;
		$("html,body").animate({
			scrollTop: HashOffset
		}, 1500);
		return false;
	});
});


 
// colorbox
 	$(document).ready(function(){
		//Examples of how to assign the ColorBox event to elements
		$(".cbox").colorbox({iframe:true, innerWidth:950, innerHeight:500});
		
		//Example of preserving a JavaScript event for inline calls.
		$("#click").click(function(){ 
			$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
			return false;
		});
	});



function addBookmark(title,url) {
if (window.sidebar) {
window.sidebar.addPanel(title, url,"");
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
} 
