(function(){
// Classe ClubMapfre
var ClubMapfre = window.ClubMapfre = {
		init: function()
		{
			// do something
		},
		
		inputFocus: function()
		{
			$( 'div.login input' )
			.focus(function(){
				$( this ).parent().prev().fadeOut( 'fast' );
			})
			.blur(function(){
				if ( $( this ).val() == '' )
					$( this ).parent().prev().fadeIn( 'fast' );
			});
		},
		
		// Posiciona o Rodapé
		posRodape: function()
		{
			var corpo = $( document.body ),
				janela = $( window ),
				wrapper = $( '.wrapper' ),
				clima = $( '.clima' ),
				rodape = $( '.rodape' );
				
			if ( corpo.height() < janela.height() ) {
				wrapper.height( janela.height() );
				rodape.css({ 'position': 'absolute', 'bottom': '0px' });
				clima.css({ 'position': 'absolute', 'bottom': rodape.height() });
			}
		}
	};
})(); 