$(document).ready(
				  
	function() {
		//初期表示時に全ての製品情報を消す
		$('div[@name=product]').each(function(){
											
			if ($(this).attr('id') == 'i-1'){
				$(this).show();
			}else{
				$(this).hide();
			}
			
		});
		
		//製品名のマウスオーバー時に製品情報を切り替える
		$('a[@name=product]').mouseover(
			function() {
				
				var myID  = $(this).attr('id');
				
				$('div[@name=product]').each(function(){
					if ($(this).attr('id') == myID){
						$(this).show();
					}else{
						$(this).hide();
					}
				});
				
			}
		);
		
		$('table[@class=tbl_list]').each(function(){
			 $(this).find('tr:odd').addClass('list_1');
			 $(this).find('tr:even').addClass('list_2');
		});
		
	}
	
	
);

