$(function() {
		
	/**
	 * Main Image
	 * jQuery fade animation
	 */
	var placeholder = $('#keyimgAreaInner h2 a').empty();
	
	$('#keyimgAreaInner ul a').each(function(i) {
		
		$('<img />').appendTo(placeholder).attr({
			'id': 'main' + i,
			'src': './img/main' + i + '.jpg',
			'alt': ''
		});
		
		$('#main0').appendTo(placeholder);
		
		$(this).hover(function() {
			placeholder.attr({ 'href': this });
			$('#main' + i).stop().appendTo(placeholder).css({ 'opacity': '0' }).fadeTo(500, 1);
		});
		
	});
	
});