function setEqualHeight(columns) {
	var tallestcolumn = 0;
	columns.each(function() {
		currentHeight = jQuery(this).height();
		if(currentHeight > tallestcolumn) {
			tallestcolumn  = currentHeight;
		}
	});
 	columns.height(tallestcolumn);
}

function isKorea() {
	return (jQuery('#shipping_countrycode').val() === 'KR');
}

function show_hide_korea_box() {
	if(isKorea()) {
		if(jQuery('#s_method_premiumrate_Courier:checked').length) {
			var display = 'block';
		} else {
			var display = 'none';
		}
	} else {
		var display = 'none';
	}
	jQuery('#jumin_container').css('display', display);
}

jQuery(document).ready(function() {
    
	setEqualHeight(jQuery('#footer .columns_4'));
	if(jQuery('.account-login .col2-set').length) {
		setEqualHeight(jQuery('.account-login .col2-set > div'));
	}
	
	if(jQuery('#health_tips_list').length) {
		jQuery('#health_tips_list').simpleFAQ({ speed: 200 });
	}
	
	if(jQuery('#product-tabs').length) {
		jQuery('#product-tabs ul.tabs').tabs('#product-tabs div.panes > div');
	}
	
	if(jQuery('#tabs').length) {
		jQuery('#tabs ul.tabs').tabs('#tabs div.panes > div');
	}
	
	if(jQuery('#checkoutSteps').length) {
		jQuery('#checkout-shipping-method-load').live('contentchanged', function() {
			show_hide_korea_box();
		});
		jQuery('dl.sp-methods input').live('change', function() {
			show_hide_korea_box();
		});
	}
	
});
