/***********************
* 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.bindTimelineAction(compId, symbolName, "Default Timeline", "complete", function(e) {
// insert code to be run at timeline end here
this.play(11500);
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_itunes}", "click", function(e) {
// insert code for mouse clicks here
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://itunes.apple.com/gb/album/mad-about-you-single/id488713427", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_TV}", "click", function(e) {
// insert code for mouse clicks here
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("http://youtu.be/htyvTFZPCEk", "_blank");

});
//Edge binding end

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

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

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

Symbol.bindElementAction(compId, symbolName, "${_Text3Copy}", "click", function(e) {
window.open("http://youtu.be/htyvTFZPCEk", "_blank");
});
//Edge binding end

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

Symbol.bindElementAction(compId, symbolName, "${_Text3}", "click", function(e) {
window.open("http://itunes.apple.com/gb/album/paul-bruce/id420538933", "_blank");

});
//Edge binding end

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

Symbol.bindElementAction(compId, symbolName, "${_smallacornrecords}", "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.smallacornrecords.co.uk", "_blank");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_Text3Copy1}", "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.facebook.com/pages/Paul-Bruce/278794028839888?sk=wall", "_blank");
});
//Edge binding end

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

Symbol.bindElementAction(compId, symbolName, "${_facebook_logo}", "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.facebook.com/pages/Paul-Bruce/278794028839888?sk=wall", "_blank");

});
//Edge binding end

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

});
//Edge binding end

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

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