function start(){
    $("#menu ul > li").hover(function(){
        $(this).stop().animate({
            borderLeftWidth: 20
        }, 100);
    }, function(){
        $(this).stop().animate({
            borderLeftWidth: 5
        }, 500);
    });
    
    $("#top ul > li").hover(function(){
        $(this).css({
            "line-height": "100%"
        });
        $(this).stop().animate({
            lineHeight: "200%"
        }, 200);
    }, function(){
        $(this).stop().animate({
            lineHeight: "100%"
        }, 800);
    });
    
    $('a.lightbox').lightBox();
	$('li.mini > a').lightBox();
    
}

$(document).ready(start);
