﻿$(document).ready(function(){
    $('.projects-banner ul').cycle({ 
        fx:    'wipe', 
        speed:  500,
        timeout:  4000 
    });
    $('.labeled').labelTextbox();
    $('#project-pictures').mezooOneBigGallery();
    $('.parent-link').each(function(){
        $(this).parent().find('p:last')
            .css({cursor: 'pointer'})
            .click(function(){
                window.location = $(this).parent().find('.parent-link:first').attr('href');
            });
    });
    $('.extending').focus(function() {
        $('#call-me-back-extended').slideDown();
    });
});