/***********************
* 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, "${_btn}", "mouseover", function(e) {
// play the timeline from the current position
//this.play("rollin");
$(this.lookupSelector("btn")).css('cursor','pointer');});
//Edge binding end





Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 1358.4363098616, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end



Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 1732.8412101107, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 1987, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_btn}", "mouseout", function(e) {
// insert code for mouse leave here
//this.play("rollout");

//$(this.lookupSelector("box1")).fadeTo("slow",0);

});
//Edge binding end



Symbol.bindElementAction(compId, symbolName, "${_GO}", "mouseover", function(e) {
// insert code for mouse enter here

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_btn}", "click", function(e) {
// insert code for mouse clicks here
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
//window.open("#inline_content", "_self");
 //$(".stage_RoundRect_id").colorbox({inline:true, href:"#inline_content", width:"762px", height:"auto"});

});
//Edge binding end

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

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