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

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_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("JerryPelletier_COM2012.mp3", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_commercial_hover}", "mouseover", function(e) {

$(this.lookupSelector("commercial_hover")).css('cursor','pointer');});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_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("commercial_hover")).hide();

});
//Edge binding end

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

});
//Edge binding end

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_promo_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("promo_hover")).hide();

});
//Edge binding end

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

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

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_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:jerry@jerrypelletier.com", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_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("email_hover")).hide();

});
//Edge binding end

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

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

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