

// LIGHTBOX
    $(document).ready(function() {
        $("a[rel='external']").click(function(event){
            window.open($(this).attr("href"));
            event.preventDefault();
        });
       
        $('a[@rel*=lightbox]').lightBox();
        
    });
    
// HOVER FUER MENU
	  $(document).ready(function(){
	  
			$("#nav-one li").hover(
			
				function(e){ 
				    $("ul", this).hide().fadeIn("slow");
				 }, 
				function() {  } 
			);
			$("#nav-one1 li").hover(
			
				function(e){ 
				    $("ul", this).hide().fadeIn("slow");
				 }, 
				function() {  } 
			);
	  	if (document.all) {
				$("#nav-one li").hoverClass ("sfHover");
				$("#nav-one1 li").hoverClass ("sfHover");
			}
			
	  });
	  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};	  



