/***********************
* 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", 0, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 2500, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 5800, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 9579.5, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 8000, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 11250, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

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

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