jQuery(document).ready(function($) {

        $('img').bind('mouseover', function()
        {
            var title = $(this).attr('alt');

            if (title.length < 30)
            {
                $('#project-title').html(title);
            }
            else
            {
                $('#project-title').html(title.substr(0, 30) + '...');
            }
        });

        $('img').bind('mouseout', function()
        {
            $('#project-title').html('');
        });
});
