

jQuery(document).ready(function($){
    $(".accordion").accordion({header:"h3",event: 'mouseover',animated: false});
    $('#dialog_link, ul#icons li').hover(
        function() {$(this).addClass('ui-state-hover');}, 
        function() {$(this).removeClass('ui-state-hover');}
    );
    $('#term').attr('value', searchinfo)
    .focus(function(){
        if($(this).attr('value') == searchinfo){
            $(this).attr('value', '');
        }
    }).blur(function(){
        if($.trim($(this).attr('value')) == ''){
            $(this).attr('value', searchinfo);
        }
    });
    $('#search .submit').hover(
        function () {
            $(this).attr('src','/layout/images/content/pfeil-icon_suche_aktiv.gif');
        }, 
        function () {
            $(this).attr('src','/layout/images/content/pfeil-icon_suche_normal.gif');
        }
    );
	$('.gallery a.video').hover(
        function () {
			var image_src = $('.control', this).attr("src").replace(/normal/,'aktiv');
            $('.control', this).attr('src',image_src);
        }, 
        function () {
			var image_src = $('.control', this).attr("src").replace(/aktiv/,'normal');
            $('.control', this).attr('src',image_src);
        }
    );
    $('#ticket-information .submit').hover(
        function () {
            $(this).addClass('hover');
        }, 
        function () {
            $(this).removeClass('hover');
        }
    );
});


(function($) {
  var cache = [];
  
  $.preloadImages = function() {
    var argsLength = arguments.length;
    for (var i = argsLength; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)

jQuery.preloadImages("/site/shared/de/bilder/portalnavigation/konzern,property=SNAME__IMG__FILE1.gif","/site/shared/de/bilder/portalnavigation/konzern,property=SNAME__IMG__FILE2.gif","/site/shared/de/bilder/portalnavigation/presse,property=SNAME__IMG__FILE1.gif","/site/shared/de/bilder/portalnavigation/presse,property=SNAME__IMG__FILE2.gif","/site/shared/de/bilder/portalnavigation/investor__relations,property=SNAME__IMG__FILE1.gif","/site/shared/de/bilder/portalnavigation/investor__relations,property=SNAME__IMG__FILE2.gif","/site/shared/de/bilder/portalnavigation/jobs__karriere,property=SNAME__IMG__FILE1.gif","/site/shared/de/bilder/portalnavigation/jobs__karriere,property=SNAME__IMG__FILE2.gif","/site/shared/de/bilder/portalnavigation/verantwortung,property=SNAME__IMG__FILE1.gif","/site/shared/de/bilder/portalnavigation/verantwortung,property=SNAME__IMG__FILE2.gif","/site/shared/de/bilder/portalnavigation/bahnwelt,property=SNAME__IMG__FILE1.gif","/site/shared/de/bilder/portalnavigation/bahnwelt,property=SNAME__IMG__FILE2.gif","/site/shared/de/bilder/portalnavigation/geschaefte,property=SNAME__IMG__FILE1.gif","/site/shared/de/bilder/portalnavigation/geschaefte,property=SNAME__IMG__FILE2.gif");
