/**
 * scripts.js => All jQuery scripts live here.
 * 
 * @author Manny Blum
 * @version 0.1
 * @copyright 2010
 *
 **/

$(document).ready(function() {
    // set up click/tap panels
    $('#contact').toggle(function(){
	    $(this).addClass('flip');
	},function(){
		$(this).removeClass('flip');
	});

    $('.readmore').click(function() {
        //$('#more').removeClass('visuallyhidden');
        $('#more').animate({
            "opacity": "show"
        }, "slow");

        return false;
    });

    $('#footer li a').hover(function() {
        alt_text = $(this).children('img').attr('alt');
        $(this).closest('footer').append('<span class="tooltip">'+ alt_text +'</span>');
    }, function() {
        $(this).parent().parent().siblings('.tooltip').remove();
    });
});

