/***********************
* 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, "${_HomeIcon}", "mouseover", function(e) {
$(this.lookupSelector("HomeIcon")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_HomeIcon}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("index.php", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B1}", "mouseover", function(e) {
$(this.lookupSelector("B1")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B2}", "mouseover", function(e) {
$(this.lookupSelector("B2")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B3}", "mouseover", function(e) {
$(this.lookupSelector("B3")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B4}", "mouseover", function(e) {
$(this.lookupSelector("B4")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B5}", "mouseover", function(e) {
$(this.lookupSelector("B5")).css('cursor','pointer');
});
//Edge binding end

Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 13000, function(e) {
// stop the timeline at the current position
this.stop();

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B5}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("computerservice.php", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B4}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("webdesign.php", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B3}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("edvschulung.php", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B2}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("referenzen.php", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B1}", "click", function(e) {
// Navigate to a new URL in the current window
// (replace "_self" with another name for a new window)
window.open("impressum.php", "_self");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B5}", "vmouseout", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B5}", "vmouseover", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("service");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B4}", "vmouseout", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B4}", "vmouseover", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("webdesign");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B3}", "vmouseout", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B3}", "vmouseover", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("schulung");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B2}", "vmouseout", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B2}", "vmouseover", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("referenzen");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B1}", "vmouseout", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("start");

});
//Edge binding end

Symbol.bindElementAction(compId, symbolName, "${_B1}", "vmouseover", function(e) {
// stop the timeline at the given position (ms or label)
this.stop("impressum");

});
//Edge binding end

})("stage");
//Edge symbol end:'stage'

})(jQuery, jQuery.Edge, "EDGE-180808764");
