/***********************
* 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, "${_doyle}", "click", function(sym, e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://doyleomite.com/", "_tab");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_index2}", "click", function(sym, e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.pioneertattoo.com/gallery.html", "_self");
// insert code for mouse clicks here

});
//Edge binding end


})("stage");
//Edge symbol end:'stage'

//=========================================================

//Edge symbol: 'doyle'
(function(symbolName) {

})("doyle");
//Edge symbol end:'doyle'

})(jQuery, AdobeEdge, "EDGE-56330406");
