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




});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_commercial_demo}", "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_demo_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_demo")).hide();


});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_commercial_demo_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_demo_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_demo")).show();

});
//Edge binding end

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

Symbol.bindElementAction(compId, symbolName, "${_link_narration_demo}", "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_narration_demo_hover")).show();
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_narration_demo")).hide();

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_narration_demo_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_narration_demo_hover")).hide();
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_narration_demo")).show();

});
//Edge binding end

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

Symbol.bindElementAction(compId, symbolName, "${_link_promo_demo}", "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_promo_demo_hover")).show();
// Hide an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_promo_demo")).hide();

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_promo_demo_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_promo_demo_hover")).hide();
// Show an Element.
//  (lookupSelector resolves an Edge element name to a DOM
//  selector that can be used with jQuery)
$(this.lookupSelector("link_promo_demo")).show();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_link_promo_demo_hover}", "mouseover", function(e) {
$(this.lookupSelector("link_promo_demo_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@jeffhagedorn.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-608136631");
