﻿$(document).ready(function () {
    
    //carrega as imagens do CSS no load da página
    $.preloadCssImages();

	//voltar ao topo/animado
    $('a[href=#top]').click(function() {
        $('html, body').animate({ scrollTop: 0 }, 'slow');
        return false;
    });
    
    //--- Menu principal
    if (jQuery.support.opacity) {
        $('#nav ul li a').hover(function() {
            $(this).find('span').stop().fadeTo(250, 0.50, function() { });
        }, function() {
            $(this).find('span').stop().fadeTo(250, 1);
        });
    }

    //---- Hide Value
    $('input[title!=""]').hint();

});
