/***********************
* 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", 250, function(e) {
this.stop();
});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 0, function(e) {
this.stop();
if (!session) drupalConnect();
this.play();
if (!preloaded) preloadImages();
});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 500, function(e) {
this.stop();
switchImage();
this.play("start");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Button1}", "click", function(e) {
currentProject = 0;
this.play();
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Button2}", "click", function(e) {
currentProject = 1;
this.play();
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Button3}", "click", function(e) {
currentProject = 2;
this.play();
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Button4}", "click", function(e) {
currentProject = 3;
this.play();
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Button5}", "click", function(e) {
currentProject = 4;
this.play();
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Button6}", "click", function(e) {
currentProject = 5;
this.play();
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Image}", "click", function(e) {
window.open(currentURL, "_blank");
});
//Edge binding end

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

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