﻿// fechar flash
function abrir(itemDiv) {
    document.getElementById(itemDiv).style.display = 'block';
    document.getElementById('block').style.display = 'block';
}
function fechar(itemDiv) {
    document.getElementById(itemDiv).style.display = "none";
    document.getElementById('block').style.display = "none";
}

// fechar janelas
$(document).ready(function () {
    $('div.fechar').click(function () {
        $('div.moldura').fadeOut("slow");
    });
});

// botoes
$(document).ready(function(){
	$("div.bot").hover(function(){
		$(this).everyTime(10, function(){
			$(this).animate({bottom: "+=5px"},500).animate({bottom: "-=5px"},500);
		});
	}, function(){
		$(this).css("bottom", "").stop(true).stopTime();
	});
});
