


/* 
 * Collect all javascripts in /home/index here.
 * 
 */


$(document).ready(function () {
    $('#read_more_anchor').click(function () {
        var hasClass = $('#homepage_header_description').hasClass('shorten');
        if (hasClass) {
            $('#homepage_header_description').removeClass('shorten');
            $('#read_more_label').html("Show less");
            $('#read_more_image').attr('src', "/images/kaya-icons/arrow-up.jpg");
        }
        else {
            $('#homepage_header_description').addClass('shorten');
            $('#read_more_label').html("Read more");
            $('#read_more_image').attr('src', "/images/kaya-icons/arrow-down.png");
        }
    });
});


$(document).ready(function() {
    $("a[rel^='prettyPhoto']").unbind().prettyPhoto(
        {
            show_title: false,
            callback: function() { window.location.hash = ""; }
        }
    );
});
