﻿$(function (){  
			
/* device category menu */

	$("a[href*=#dsi]").click(function (){ 
		$('#productlist').load('product/all_dsi.html');
	});
	$("a[href*=#psp]").click(function (){ 
		$('#productlist').load('product/all_psp.html');
	});
	$("a[href*=#pspgo]").click(function (){ 
		$('#productlist').load('product/all_pspgo.html');
	});
	$("a[href*=#apple]").click(function (){ 
		$('#productlist').load('product/all_apple.html');
	});


/* about page menu */
	
	$("a[href*=#aboutOne]").click(function (){ 
		$('.aboutinfo').load('about/summary.html');
	});
	$("a[href*=#aboutTwo]").click(function (){ 
		$('.aboutinfo').load('about/quality.html');
	});
	$("a[href*=#aboutThree]").click(function (){ 
		$('.aboutinfo').load('about/responsibility.html');
	});
	$("a[href*=#aboutFour]").click(function (){ 
		$('.aboutinfo').load('about/opportunity.html');
	});
	$("a[href*=#aboutFive]").click(function (){ 
		$('.aboutinfo').load('about/contact.html');
	});

/* exp page menu */
	
	$("a[href*=#expOne]").click(function (){ 
		$('.expbox').load('exp/experience.html');
	});
	$("a[href*=#expTwo]").click(function (){ 
		$('.expbox').load('exp/quality.html');
	});
	$("a[href*=#expThree]").click(function (){ 
		$('.expbox').load('exp/userexp.html');
	});
	$("a[href*=#expFour]").click(function (){ 
		$('.expbox').load('exp/mediatest.html');
	});
	
}); 
