/***********************
* 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, "${_bigbtn}", "mouseover", function(e) {
$(this.lookupSelector("bigbtn")).attr("src","images/big_btn_over.png");
$(this.lookupSelector("bigbtn")).css('cursor','pointer');


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_bigbtn}", "mouseout", function(e) {

$(this.lookupSelector("bigbtn")).attr("src","images/big_btn.png");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_bigbtn}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("/build/build.php", "_self");


});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "document", "loaded", function(e) {
myText = $(this.lookupSelector("Text3")).html("build your blanket now");
myText.css('color','white');
myText.css('text-shadow', '#605685 1px 1px 1px');
myText.css('font-size', 30);

});
//Edge binding end

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

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