/**
 * Blog Utils 
 * 
 * Copyright (C) 2009 by Benjamin Sternthal <ben@sternthal.org>
 */
$(function() {	 
   $("a.lb-thumb").fancybox({
        'padding'			: 10,
        'transitionIn'		: 'elastic',
        'transitionOut'		: 'elastic',
        'type'              : 'image',
        'changeFade'        : 0,
        'titlePosition'     : 'over'    
    }); 

    $("a.lb").fancybox({
        'padding'			: 10,
        'transitionIn'		: 'elastic',
        'transitionOut'		: 'elastic',
        'type'              : 'image',
        'changeFade'        : 0,
        'titlePosition'     : 'over'    
    }); 
    
	//Nav rollover
    $('#header-nav li.not-active a').hover(
        function () {
            $(this).parents('li').toggleClass('active');
        }, 
        function () {
            $(this).parents('li').toggleClass('active'); 
   	    }
    );    

});   

