//<![CDATA[
	jQuery(document).ready(function() {
	// scroll top	
		$('<img />', {
			id: 'irtopo',
			src: './imagem/irtopo.gif',
			alt: 'Ir topo'
		}).appendTo('body')
		.css({
		position: 'fixed',
		cursor: 'pointer',
		right: 0,
		bottom: 0
		});
		
		$('#irtopo').click(function() {
			$('html, body')
  			.animate({scrollTop: 0}, 1500);
		});	
	})
// ]]>	
