/***********************
* 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) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_commercial_hover")).hide();
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_narrative_hover")).hide();
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_email_hover")).hide();



});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_commercial}", "mouseover", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_commercial_hover")).show();
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_commercial")).hide();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_commercial_hover}", "mouseup", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("jefffinney_commercial.mp3", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_commercial_hover}", "mouseout", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_commercial_hover")).hide();
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_commercial")).show();


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_commercial_hover}", "mouseover", function(e) {
$(this.lookupSelector("link_commercial_hover")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_narrative}", "mouseover", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_narrative_hover")).show();
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_narrative")).hide();


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_narrative_hover}", "mouseup", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("jefffinney_narrative.mp3", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_narrative_hover}", "mouseout", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_narrative_hover")).hide();
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_narrative")).show();


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_narrative_hover}", "mouseover", function(e) {
$(this.lookupSelector("link_narrative_hover")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_email}", "mouseover", function(e) {
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_email_hover")).show();
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_email")).hide();


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_email_hover}", "mouseup", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("mailto:jeff@jefffinneyvo.com", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_email_hover}", "mouseout", function(e) {
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_email_hover")).hide();
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_email")).show();


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_email_hover}", "mouseover", function(e) {
$(this.lookupSelector("link_email_hover")).css('cursor','pointer');
});
//Edge binding end

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

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