﻿$(document).ready(function () {
    $('.banner').click(function (e) {
        $.post('/ajax?Acao=CliqueBanner', 'idBanner=' + $(this).attr('rel'), function (retorno) {
            var contabilizado = 1;
        });
    });
});

function EmailValido(Email) {
    var er = new RegExp(/^[A-Za-z0-9_\-\.]+@[A-Za-z0-9_\-\.]{2,}\.[A-Za-z0-9]{2,}(\.[A-Za-z0-9])?/);
    return er.test(Email);
}


// SUBMENU

function subMenu(){
	$('#menu').find('li').find('.subMenu').parent().mouseenter(function(){		
		// MOSTRO O SUBMENU
		$(this).find('.subMenu:not(:animated):first').show('fast');
	})
	.mouseleave(function(){		
		// ESCONDO O SUBMENU
		$(this).find('.subMenu').slideUp('fast');
	})
}



$(function(){
	subMenu();
})
