jQuery.noConflict();
// Creating Global Namespace for GmdNeuheim
// Creating namespaces
var GmdNeuheim = {}
// Starting point
jQuery(document).ready( function() {
  GmdNeuheim.initInnerfade();
  GmdNeuheim.subNavRollover();
});
GmdNeuheim.initInnerfade = function() {
  jQuery("#innerfadeStart").innerfade({ animationtype: 'fade', speed: 750, timeout: 5000, type: 'sequence', containerheight: '477px'}); 
  
}
GmdNeuheim.subNavRollover = function() {
  jQuery("#topNavigation ul li").hover(
    function(){ 
      jQuery(this).addClass("rollover");},
    function(){ 
      jQuery(this).removeClass("rollover");}
  );
}


