$(document).ready(function() {
    
    /* --( PNG Fix )-- */
    $("img[@src$=png], .png, h4.heading, h3.heading").pngfix();
    
    /* --( Home Page )-- */
    if ($('body').attr('id') == 'home') {
        $('#ctas div').each(function(){
            $(this).hover(
                function(){
                    $('body').css({cursor: 'pointer'});
                },
                function(){
                    $('body').css('cursor', 'default');
                }
            );
            $(this).click(function(){
                document.location = $(this).find('p.more a').attr('href');
            });
        });
    }
    
    /* --( About Page )-- */
    if ($('body').attr('id') == 'about') {
        
        $('#bio div.more').hide()
            .after('<div id="read_more">' + 
                        '<p><a href="#"><img src="_img/about_read_more.png" width="401" height="34" alt="About Read More" border="0" /></a></p>' +
                    '</div>');
        
        var expanded = false;            
        $('#read_more a').click(function(){
            $('#bio div.more').slideToggle(1000, function(){
                if (expanded) {
                    $('#read_more img').attr('src', '_img/about_read_more.png');
                    expanded = false;
                } else {
                    $('#read_more img').attr('src', '_img/about_collapse.png');
                    expanded = true;
                }
            });
            return false;
        });
                    
    }
    
});
