/* ---------------------------------------------------------
Copyright: Jo-Ba AS
Language: JQUERY
----------------------------------------------------
*/

$(document).ready(function(){
});

$(window).load(function(){
	$(".rounded_box_center").each(function(){
		var boxheight = $(this).find(".rounded_box_center_left").height();
		$(this).find(".rounded_box_center_right").height(boxheight);
	});
});

