/***********************
* 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, "${_FFTag}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/packaging.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Packaging}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/packaging.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_AcceptBro}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/collateral.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Collateral}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/collateral.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_SimpleAd}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/advertising.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Ads}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/advertising.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_STNWPoster}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/signage.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Signagepop}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/signage.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_FFLetter}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/identity.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_IdentityLogos}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/identity.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_RomanWeb}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/web.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Web}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://www.hollycreative.com/web.html", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_FFTag}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("FFTag")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Packaging}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("Packaging")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_AcceptBro}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("AcceptBro")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Collateral}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("Collateral")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_SimpleAd}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("SimpleAd")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Ads}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("Ads")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_STNWPoster}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("STNWPoster")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Signagepop}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("Signagepop")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_FFLetter}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("FFLetter")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_IdentityLogos}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("IdentityLogos")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_RomanWeb}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("RomanWeb")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Web}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("Web")).css('cursor','pointer');
});
//Edge binding end

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

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