/*------------------------------------------------------------------------------
	BEST BRASS Corp js_conf.js (configuration of javascript)
	URL: http://www.bestbrass.jp/
	Date: 2009-00-00
	Copyright (C) Best Brass Corp All Rights Reserved.
------------------------------------------------------------------------------*/

//マウスオーバーフェード img.j_h_fade (<img class="j_h_fade" >で)
$(document).ready(function(){
	$("img.j_h_fade").fadeTo(0,0.8);$("img.j_h_fade").hover(function(){
		$(this).fadeTo(100,1.0);
	},    
	function(){
		$(this).fadeTo(100,0.8);    
	});
});


//イメージスイッチ(STFページ)
$(document).ready(function(){ 
    $("div#trig_1 a").click(function(){ 

        $("#img_sw_1").ImageSwitch({Type:$(this).attr("class"), 

            NewImage:$(this).attr("rel")

        }); 
    }); 
});

//イメージスイッチ(STFページ)
$(document).ready(function(){ 
    $("div#trig_2 a").click(function(){ 

        $("#img_sw_2").ImageSwitch({Type:$(this).attr("class"), 

            NewImage:$(this).attr("rel")

            }); 
    }); 
});
//イメージスイッチ(STFページ)
$(document).ready(function(){ 
    $("div#trig_3 a").click(function(){ 

        $("#img_sw_3").ImageSwitch({Type:$(this).attr("class"), 

            NewImage:$(this).attr("rel")

            }); 
    }); 
});
//イメージスイッチ(STFページ)
$(document).ready(function(){ 
    $("div#trig_4 a").click(function(){ 

        $("#img_sw_4").ImageSwitch({Type:$(this).attr("class"), 

            NewImage:$(this).attr("rel")

            }); 
    }); 
});
//イメージスイッチ(STFページ)
$(document).ready(function(){ 
    $("div#trig_5 a").click(function(){ 

        $("#img_sw_5").ImageSwitch({Type:$(this).attr("class"), 

            NewImage:$(this).attr("rel")

            }); 
    }); 
});
//イメージスイッチ(STFページ)
$(document).ready(function(){ 
    $("div#trig_6 a").click(function(){ 

        $("#img_sw_6").ImageSwitch({Type:$(this).attr("class"), 

            NewImage:$(this).attr("rel")

            }); 
    }); 
});
//イメージスイッチ(STFページ)
$(document).ready(function(){ 
    $("div#trig_7 a").click(function(){ 

        $("#img_sw_7").ImageSwitch({Type:$(this).attr("class"), 

            NewImage:$(this).attr("rel")

            }); 
    }); 
});

