/***********************
* 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.bindTriggerAction(compId, symbolName, "Default Timeline", 2000, function(e) {
// insert code here
});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 22290, function(e) {
// stop the timeline at the given position (ms or label)
this.stop(0);
// play the timeline from the given position (ms or label)
this.play(0);
});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 0, function(e) {
// insert code here// stop the timeline at the current position

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_stage}", "mouseover", function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_stage}", "mouseout", function(e) {
// play the timeline from the current position
this.play();

});
//Edge binding end



Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 27000, function(e) {
// play the timeline in reverse from its current location
this.playReverse();

});
//Edge binding end

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

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