jQuery(document).ready(function () {
	
    jQuery(".despanel .htmlcont, .despanel .headline").mouseover(function(){
			
		jQuery(".despanel .headline").animate({ 
			height: "385px",
			top: "100px"
		}, 1500 );
		
		jQuery(".despanel .htmlcont").animate({ 
			height: "370px",
			top: "110px"
		}, 1500 );
		
		jQuery(".despanel").removeClass("inactive").addClass("active");
    });
    
    
    jQuery("a.lightbox").fancybox({ 'overlayShow': true, 'transitionIn':'elastic', 'transitionOut':'elastic' });
    jQuery("a.thickbox").fancybox({ 'overlayShow': true, 'transitionIn':'elastic', 'transitionOut':'elastic' });
    jQuery("#ligallery a").fancybox({ 'overlayShow': true, 'transitionIn':'elastic', 'transitionOut':'elastic' });
    jQuery("a[@rel*=lightbox]").fancybox({ 'overlayShow': true, 'transitionIn':'elastic', 'transitionOut':'elastic' });


});
