$(
    function(){
        autoCut();

        if(!$.browser.msie || parseInt($.browser.version) >= 7) {
            $('.toHover')
                .live(
                    'mouseover',
                    function() {
                        $(this).addClass('hover');
                    }
                )
                .live(
                    'mouseout',
                    function() {
                        $(this).removeClass('hover');
                    }
                );
        }

        /*
        $('#carouselPlaylists').jcarousel(
            {
                vertical:       true,
                auto:           5,
                scroll:         3,
                animation:      'slow',
                wrap:           'both'
            }
        );
        */
    }
);

function autoCut(selector) {
	if(selector==undefined)
		selector='';
    $('.autoCutOneLine',$(selector)).autoCutText(
        {
            maxHeight: '1l'
        }
    );

    $('.autoCutTwoLine',$(selector)).autoCutText(
        {
            maxHeight: '2l'
        }
    );
}
