/***********************
* 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, "${_alumni}", "click", function(e) {
// Navigate to a new URL in the current window

// (replace "_self" with another name for a new window)

window.open("https://www.webalumnus.com/wa/userLogon.aspx?oid=30119&AspxAutoDetectCookieSupport=1", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_obclub}", "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.blundells.org/obclub/index.htm", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_devoff}", "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.blundells.org/devoffice/index.htm", "_self");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_senior}", "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.blundells.org/admin/blundells.htm", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_prep}", "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.blundells.org/prep/default.htm", "_self");

});
//Edge binding end



Symbol.bindElementAction(compId, symbolName, "${_prep}", "mouseover", function(e) {


$(this.lookupSelector("prep")).css('cursor','pointer');

// play the timeline from the current position
this.play(4000);

// stop the timeline at the current position

this.stop(5000);

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "document", "loaded", function(e) {
// stop the timeline at the current position
this.stop(4000);
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_senior}", "mouseover", function(e) {
$(this.lookupSelector("senior")).css('cursor','pointer');
// play the timeline from the current position
this.play(7000);
// stop the timeline at the current position
this.stop(8000);
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_devoff}", "mouseover", function(e) {
$(this.lookupSelector("devoff")).css('cursor','pointer');
// play the timeline from the current position

this.play(10000);

// stop the timeline at the current position

this.stop(11000);

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_obclub}", "mouseover", function(e) {
$(this.lookupSelector("obclub")).css('cursor','pointer');
// play the timeline from the current position

this.play(13000);

// stop the timeline at the current position

this.stop(14000);

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_alumni}", "mouseover", function(e) {
$(this.lookupSelector("alumni")).css('cursor','pointer');
// play the timeline from the current position

this.play(16000);

// stop the timeline at the current position

this.stop(17000);

});
//Edge binding end

})("stage");
//Edge symbol end:'stage'

})(jQuery, jQuery.Edge, "EDGE-6683045");
