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

});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 0, function(e) {
// insert code here
});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Text6}", "click", function(e) {
// insert code for mouse clicks here// play the timeline in reverse from its current location
this.playReverse();
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("mailto:info@flerber.com", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Text5}", "click", function(e) {
// play the timeline in reverse from its current location
this.playReverse();
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.facebook.com/pages/Flerber/214097378628698", "_self");

});
//Edge binding end



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

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