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

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

});
//Edge binding end

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

});
//Edge binding end



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

});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_facebook}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("https://www.facebook.com/pages/Fighter-Jet-Studios/222841962806", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_twitter}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("https://twitter.com/@FighterJetNews", "_blank");

});
//Edge binding end

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

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