var Application = {
    init: function() {
        console.log('initialized');
/*        $('.handle')
        .bind('dragstart',function( event ){
            if ( !$(event.target).is('.handle') ) return false;
            $( this ).addClass('active');
        })
        .bind('drag',function( event ){
            $( this ).css({
                top: event.offsetY,
                left: event.offsetX
            });
        })
        .bind('dragend',function( event ){
            $( this ).removeClass('active');
        });   
*/        $('.handle').pulse({
            opacity: [0,1]
        }, {
            duration: 100, // duration of EACH individual animation
            times: 3, // Will go three times through the pulse array [0,1]
            easing: 'linear', // easing function for each individual animation
            complete: function() {
                alert("I'm done pulsing!");
            }
        }); 
    }
};



