$(document).ready(function() {

    $("ul#navigation li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    
    });
    

	$(".ajax-popup-small").fancybox({
		type : "ajax",
		scrolling: false
		
	});
	
	$(".gallery a").fancybox({
		arrows : true
	});
		
	$(".menu-item-object-modellen a").fancybox({
		type : "ajax",
		scrolling: false
		
	});
	
	$(".filter").click(function() {
	
		var href = $(this).attr("href");
		
		if(href) {
			document.location=href;	
		}
	
	});


});
