/***********************
* 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", 4000, function(e) {
// insert code here
});
//Edge binding end









Symbol.bindElementAction(compId, symbolName, "${_itgrey2}", "click", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("Italiano")).show();
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.proseccocroset.it/it/home.asp", "_self");

});
//Edge binding end



})("stage");
//Edge symbol end:'stage'

})(jQuery, jQuery.Edge, "EDGE-25161330");
