$(function(){
    if($.fn.lightBox){
        $('.lightbox').lightBox({
            fixedNavigation: true
        });
    }
    $('.project-listing li, .project-photos li').bind('mouseover',{},function(){
        $(this).addClass('project-over');
    }).bind('mouseout',{},function(event){
        $(this).removeClass('project-over');
    });
     $('.project-listing li .info, .project-photos li .info').bind('mouseover',{},function(){
        var parent = $(this).parent(),
        tooltip = $('.tooltip', parent);
        if(tooltip.is(':hidden')){
            $('.tooltip').hide();
            tooltip.fadeIn();
        }
    }).bind('mouseout',{},function(){
        $('.tooltip').hide();
    }).bind('mousemove',{},function(event){
        var parent = $(this).parent();
        $('.tooltip', parent).css({left: event.pageX-240, top: event.pageY+50});
        stopEvent(event);
    });
    $(document).bind('mousemove',{},function(event){
        $('.tooltip').hide();
    });
});
