$(document).ready(function(){
	$('#foot .c2').css('position', 'relative');
	$('#foot .c2 .area').css({
		'height': '200px',
		'left': '0',
		'position': 'absolute',
		'top': '0',
		'width': '120px'
	});
	$('#foot .c2 .area-popup').css({
		'width': '419px',
		'height': '325px',
		'display': 'none',
		'position': 'absolute',
		'top': '-248px',
		'left': '94px'
	});
	
	$('#foot .c2 .area').hover(function(){
		$('#foot .c2 .area-popup').show();
	}, function(){
		$('#foot .c2 .area-popup').hide();
	});
});
