// JavaScript Document

jQuery(document).ready(function () {

	var initial_top = jQuery('#programas').css('marginTop')

    jQuery('#botao').click(function () {

		var top = jQuery('#programas').css('marginTop')

        if ( top == initial_top) {
        	//alert('desce');
            jQuery('#programas').animate({"margin-top": "+=155px"}, "slow");
        } else {
                //	alert('sobe');
           jQuery('#programas').animate({"margin-top": "-=155px"}, "slow");
        }
        
        return false;
    });
});



jQuery(document).ready(function () {

    jQuery('.banner-local').mouseenter(function () {
    	//jQuery('#frame1').hide();
        jQuery('#frame2').css('marginTop', '0px');
    	jQuery('#frame2').show();
        jQuery('#frame2').animate({"margin-top": "-=265px"}, "slow");
                
        return false;
    });
    
    jQuery('.banner-local').mouseleave(function () {
    
        jQuery('#frame2').animate({"margin-top": "+=265px"}, "slow");
    	jQuery('#frame1').show();

                
        return false;
    });
});


