// JavaScript Document
// Criado por Cedilha Comunicação e Design (www.cedilha.com.br) para o site www.jornaluniao.com.br
$(document).ready(function() {

	$('#fullbannertopo').mouseover(function() {
		$(this).css('height','500px');
	});
	
	$('#fullbannertopo').mouseout(function() {
		$(this).css('height','60px');
	});
});