/***********************
* 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, "${_link_LearnMore}", "mouseover", function(sym, e) {
$(this.lookupSelector("link_LearnMore")).css('cursor','pointer');
$(this.lookupSelector("link_LearnMore")).css('text-decoration','underline');});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_LearnMore}", "click", function(sym, e) {
window.open("/fmispot/", "_self");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_LearnMore}", "mouseout", function(sym, e) {
$(this.lookupSelector("link_LearnMore")).css('text-decoration','none');
});
//Edge binding end


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

})(jQuery, AdobeEdge, "EDGE-10351149");
