			  Shadowbox.init({
			    height: 560,
			    width: 803,
			    players: ['html', 'iframe'],
			    modal: false,
			    onOpen: onShOpen,
			    onClose: onShClose 
			
			});
			
			function onShOpen() {
			    if (navigator.appName.indexOf("Internet Explorer") != -1) {
			    document.body.style.overflow = "hidden";
			    }
			    return true;
			}
			
			function onShClose() {
			    if (navigator.appName.indexOf("Internet Explorer") != -1) {
			    document.body.style.overflow = "auto";
			    }
			    return true;
			}
			
			$( function(){
			    $('.mp-norm').hover( function(){
			        //this.style.background = 'url(fileadmin/img/bg_menue_page_act.jpg) no-repeat';
			        $($(this).children()[0]).css("color","#9bcd05");
			    },
			    function(){
			        //this.style.background = 'transparent';
			        $($(this).children()[0]).css("color","#333");
			    });
			});
			
			$( function(){
			    $('.mpsub-norm').hover( function(){
			        $($(this).children()[0]).css("color","#9bcd05");
			    },
			    function(){
			        $($(this).children()[0]).css("color","#999");
			    });
			});
			
			$( function(){
			    $('.subm-l2-norm').hover( function(){
			        //this.style.backgroundColor = '#fff';
			        $($(this).children()[0]).css("color","#9bcd05");
			    },
			    function(){
			        //this.style.backgroundColor = '#f0f0f0';
			        $($(this).children()[0]).css("color","#999");
			    });
			});
			
			$( function(){
			    $('.TPSend').hover( function(){
			        this.style.background = 'url(fileadmin/img/sende_button_rollover.png) no-repeat';
			    },
			    function(){
			        this.style.background = 'url(fileadmin/img/sende_button_blank.png) no-repeat';
			    });
			});

