/***********************
* Adobe Edge Composition Actions
*
* Edit this file with caution, being careful to preserve 
* function signatures and comments starting with 'Edge' to maintain the 
* ability to interact with these actions from within Adobe Edge
*
***********************/
(function($, Edge, compId){
var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes

//Edge symbol: 'stage'
(function(symbolName) {

Symbol.bindElementAction(compId, symbolName, "${_dot1}", "click", function(e) {
// play the timeline from the given position (ms or label)
this.play(9000);

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_dot2}", "click", function(e) {
// play the timeline from the given position (ms or label)
this.play(14000);

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_dot3}", "click", function(e) {
// stop the timeline at the given position (ms or label)
this.play(19250);
});
//Edge binding end

Symbol.bindTimelineAction(compId, symbolName, "Default Timeline", "stop", function(e) {
// insert code to be run when the timline stops here
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_dot1}", "mouseover", function(e) {
$(this.lookupSelector("dot1")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_dot2}", "mouseover", function(e) {
$(this.lookupSelector("dot2")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_dot3}", "mouseover", function(e) {
$(this.lookupSelector("dot3")).css('cursor','pointer');
});
//Edge binding end





Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 24750, function(e) {
// play the timeline from the given position (ms or label)
this.play(9000);

});
//Edge binding end

})("stage");
//Edge symbol end:'stage'

})(jQuery, jQuery.Edge, "EDGE-30573077");
