// JavaScript Document
$(document).ready(function() {
	contentList.init('valList');
	
	//JS account module
	$('.account .content:first').show();
	$('.account .title:first').show();
	
	$('#valList ul#menuContent li a').click(function(){
		var tmp = $(this).attr('href');
		var account = tmp.substring(tmp.indexOf('#')+1,tmp.length);
		$('.account .content').hide();
		$('.account .'+account).show();
		$('.account .title').hide();
		$('.account .'+account).show();
	});
});