/* jquerycommand */
$(function(){

	$('label').hover(function(){
			 $(this).addClass('labelback');
		},function(){
			 $(this).removeClass('labelback');
		});

	/* wink */
	$("ul#top-navi li,div#side a img,div.pagefooter a img,#contact input[type=image]").hover(function(){
		$(this).css("opacity", "0.5");
		$(this).css("filter", "alpha(opacity=50)");
		$(this).fadeTo("slow", 1.0);
	});
	
	/* zebratable */
  $('div#fabric table tr:odd,div#flowchart table.bland tr:odd,div#flowchart table.option tr:odd,table.shoes-table tr:odd,table.belt-table tr:odd,table.akisituzyouhou tr:odd,table.zyouken tr:odd,div#suitsreform table tr:odd').addClass('odd');
  
	/* #footerコピーライトの年を動的に書き換え
	var year = new Date().getFullYear();
	var copyTxt = $('#foot-navi p').html();
	if(copyTxt.match(/([0-9]{4}-)?([0-9]{4})/) != null){
		var repTxt = copyTxt.replace(RegExp.$2,year);
		$('#foot-navi p').html(repTxt);
	}
	
	var year = new Date().getFullYear();
	var since = 1937;	
	var temp = year - since;
	var tempalt = 'テーラー神谷はおかげ様で創業'+temp+'年';
	$('img.sougyou').attr('alt', tempalt);*/


	$('div.aki-location dl').addClass('heightLine-groupA');

			
try{
	$("div.aki-location dl a").attr('rel','group-fancy').fancybox();	
}catch(e){}

		
		

});

