(function($){

	$(window).load(function(){
	
	$('.cont_011:first').clone().appendTo('#main');
	
	$('.cont_011:first .site_map_1:odd').remove();
	$('.cont_011:eq(1) .site_map_1:even').remove();
	
	$('.cont_011:first').css('float','left');
	$('.cont_011:eq(1)').css('float','right');
	
	
	$('.site_map_1').each(function(){
	
			$(this).find('.site_map_2:first').remove();
	});
	
	$('.site_map_2').each(function(){
	
			$(this).find('.site_map_3:first').remove();
	});
	
	$('.site_map_3').each(function(){
	
			$(this).find('.site_map_4:first').remove();
	});

	});
	
	
		
})(jQuery);

