function res2fit(){
	$('#right-column').css({'height':'auto'});
	if ( parseInt($('#left-column').height()) > parseInt($('#right-column').height()) ){
		$('#right-column').height(parseInt($('#left-column').height()));
	}
}
function isMobile(){
	return (
		(navigator.platform.indexOf("iPhone") != -1) ||
		(navigator.platform.indexOf("iPod") != -1) || 
		(navigator.platform.indexOf("android") != -1)
	);
}


