jQuery.noConflict();
jQuery(document).ready(function(){
	var h = new HomeColor();
	h.init();
});

function HomeColor(){
	
}

HomeColor.prototype = {
	init:function(){
		this.leftColumn = jQuery('div.contentLeft_02');
		if(jQuery('div.contentWraper').height() > jQuery('div.contentLeft').height()){
			this.leftColumn.height(jQuery('div.contentWraper').height());
		} else {
			if(jQuery('div.boxBack_01').length != 1){
				jQuery('#last').height(jQuery('#last').height() + jQuery('div.contentLeft').height()-jQuery('div.contentWraper').height()+16);
				this.leftColumn
			} else {
				this.rightColumn = jQuery('div.contentRight div.boxBack_08');
				this.rightColumn.height(this.leftColumn.height()-parseInt(this.rightColumn.css('paddingTop'))-parseInt(this.rightColumn.css('paddingBottom')));
			}
			
		}
	}
	
}

