$(document).ready(function(){
	if(! /MSIE 6\.0|MSIE 7\.0/.test(navigator.userAgent))
	{
		setTimeout(function(){makeColumnsSameHeight();},300);
	}
	else
	{
		$viewMore=$('.view_more_image')
			.css('margin-top','30px')
			.css('float','right');
		;
	}
});

function makeColumnsSameHeight()
{
	var $left=$('#left .inside');
	var $right=$('#right .inside');
	var $main=$('#main .inside');

	var maxHeight=0;	
	var tmpHeight=$left.height();
	if(maxHeight<tmpHeight) maxHeight=tmpHeight;// alert(maxHeight);
	var tmpHeight=$right.height();
	if(maxHeight<tmpHeight) maxHeight=tmpHeight;
	var tmpHeight=$main.height();
	if(maxHeight<tmpHeight) maxHeight=tmpHeight;

	maxHeight+=30;

	$left.height(maxHeight);
	$right.height(maxHeight);
	$main.height(maxHeight);

	$viewMore=$('.view_more_image');
	$viewMore.css('position','absolute');
	$viewMore.css('margin-top','0');
	$viewMore.css('top',maxHeight-$viewMore.height());
	$viewMore.css('right','0');

	$viewMore.css('bottom','auto');
	$viewMore.css('left','auto');
}

