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

