
function irPara(id)
{
	altura = jQuery('#'+id).offset().top - jQuery(window).height()+jQuery('#'+id).height();
	if(altura<0)
	    altura = 0;
	jQuery('html, body').animate(
			{ 'scrollTop' : altura }, 'slow'
		);
}
