var hover_clicked = $('#con>#left>.left_a').first();
var hover_clicked_num = 0;

$(function(){
	$('#left>#left_hover>.left_a').last().css('border-bottom','solid 1px white');
	$('#left>#left_hover>.left_a').hover(
		function()
		{
			$(this).css('background','none');
			$(this).css('background','#3D8FB3');
			$(this).find('a').css('color','#ffffff');
			
		},
		function()
		{
			$(this).css('background','#87CEFF');
			$(this).find('a').css('color','#333333');
		}
	);
	$('#con>#right>#right_hover>div').hide();
	$('#con>#right>#right_hover>div').first().show();
	$('#con>#left>#left_hover>.left_a').click(
		function(){
			$('#con>#right>#right_hover>div').eq(hover_clicked_num).hide();
			
			hover_clicked = $(this);
			//hover_clicked.css('background','#3D8FB3');
			hover_clicked_num = hover_clicked.index('#con>#left>#left_hover>.left_a');
			$('#con>#right>#right_hover>div').eq(hover_clicked_num).show();
		}
	)
	
		
	
});
