/***********************
* 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.bindTriggerAction(compId, symbolName, "Default Timeline", 0, function(e) {
// play the timeline from the current position
//this.play('temp');
});
//Edge binding end









Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 141000, function(e) {
// play the timeline from the given position (ms or label)
this.play('img1');

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD1}", "click", function(e) {
// insert code for mouse clicks here
window.open("e-learning.html", "_self");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD1}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("MD1")).css('cursor','pointer');
$(this.lookupSelector("MD1txt")).css('color','#2873A3');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD1}", "mouseout", function(e) {
// insert code for mouse leave here
$(this.lookupSelector("MD1txt")).css('color','#ffffff');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_CS1}", "click", function(e) {
// insert code for mouse clicks here
window.open("case-studies.html", "_self");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_CS1}", "mouseout", function(e) {
// insert code for mouse leave here
$(this.lookupSelector("CS1txt")).css('color','#ffffff');

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_CS1}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("CS1")).css('cursor','pointer');
$(this.lookupSelector("CS1txt")).css('color','#2873A3');

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD2}", "click", function(e) {
// insert code for mouse clicks here
window.open("mobile-application.html", "_self");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD2}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("MD2")).css('cursor','pointer');
$(this.lookupSelector("MD2txt")).css('color','#2873A3');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD2}", "mouseout", function(e) {
// insert code for mouse leave here
$(this.lookupSelector("MD2txt")).css('color','#ffffff');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD3}", "click", function(e) {
// insert code for mouse clicks here
window.open("application-development.html", "_self");
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD3}", "mouseover", function(e) {
// insert code for mouse enter here
$(this.lookupSelector("MD3")).css('cursor','pointer');
$(this.lookupSelector("MD3txt")).css('color','#2873A3');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_MD3}", "mouseout", function(e) {
// insert code for mouse leave here
$(this.lookupSelector("MD3txt")).css('color','#ffffff');
});
//Edge binding end

})("stage");
//Edge symbol end:'stage'

})(jQuery, jQuery.Edge, "EDGE-604184565");
