This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEvent('domready', function() | |
{ | |
// wird ausgefuehrt wenn der DOM fertig geladen ist | |
}); | |
window.addEvent('load', function() | |
{ | |
// wird ausgefuehrt wenn der DOM inkl. Bildern usw. geladen ist | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function() | |
{ | |
// wird ausgefuehrt wenn der DOM fertig geladen ist | |
}); | |
jQuery(window).load(function() | |
{ | |
// wird ausgefuehrt wenn der DOM inkl. Bildern usw. geladen ist | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=true"></script> | |
<script type="text/javascript" src="tl_files/MooGeo-yui-compressed.js"></script> | |
<script type="text/javascript"> | |
<!--//--><![CDATA[//><!-- | |
window.addEvent('domready', function() | |
{ | |
// Configuration | |
mapdiv = 'mapdiv'; | |
latdestination = 47; | |
londestination = 8; |
NewerOlder