/*
 * property js
 * @require jquery.js
 */


$(function(){
	
	$("div.pLeft").each(function(i){
		$(this).removeClass("pLeft");
		if(i%2 == 1){
			$(this).addClass("insideRight");
			$(this).after('<div class="p_clear"></div>');
		}else{
			$(this).addClass("insideLeft");
		}
	});
	$("div.sell-box").each(function(i){
		$(this).removeClass("pbox");
		if(i%2 == 1){
			$(this).addClass("insideRight");
			$(this).after('<div class="p_clear"></div>');
		}else{
			$(this).addClass("insideLeft");
		}
	});
	$("div.coordinate-box").each(function(i){
		$(this).removeClass("pbox");
		if(i%2 == 1){
			$(this).addClass("insideRight");
			$(this).after('<div class="p_clear"></div>');
		}else{
			$(this).addClass("insideLeft");
		}
	});
	$("div.unit-box").each(function(i){
		$(this).removeClass("pbox");
		if(i%2 == 1){
			$(this).addClass("insideRight");
			$(this).after('<div class="p_clear"></div>');
		}else{
			$(this).addClass("insideLeft");
		}
	});
	$("div.social-box").each(function(i){
		$(this).removeClass("pbox");
		if(i%2 == 1){
			$(this).addClass("insideRight");
			$(this).after('<div class="p_clear"></div>');
		}else{
			$(this).addClass("insideLeft");
		}
	});
	
});

