$(function() {
	// /index
	$('.homepage ul li')
		.hover(
			function() {
				$(this).parent().css('background', '#111');
				$('.current_title').text($(this).find('a').text()).show();
				$(this).find('a').css('border', '5px solid #333')
			},
			function() {
				$(this).parent().css('background', '#fff');
				$('.current_title').hide().text('');
				$(this).find('a').css('border', '5px solid #fff')
			}
		)
})
