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

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_COVER}", "mouseover", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("MAG");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_ribbon-stripCopy}", "mouseover", function(e) {
// play the timeline from the given position (ms or label)
this.play("shake");
// play the timeline from the given position (ms or label)
this.play("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_gift-right}", "mouseover", function(e) {
// play the timeline from the given position (ms or label)
this.play("shake");
// play the timeline from the given position (ms or label)
this.play("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_gift-left}", "mouseover", function(e) {
// play the timeline from the given position (ms or label)
this.play("shake");
// play the timeline from the given position (ms or label)
this.play("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_bow}", "mouseover", function(e) {
// play the timeline from the given position (ms or label)
this.play("shake");
// play the timeline in reverse from its current location
this.playReverse("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_okmag-white}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.okmag.com", "_self");

});
//Edge binding end

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

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