$(document).ready(function(){
    $(".nav ul > li > a").hover(function(){
        $(this).parent().addClass('hover-state');
    }, function(){
        $(this).parent().removeClass('hover-state');
    });
    
    var contentHeight = $('.content').height();
    var sidebarHeight = $('.sidebar').height();
    
    if(sidebarHeight > contentHeight){
        $('.content').height(sidebarHeight + 170);
    }else{
        $('.sidebar').height(contentHeight - 170);
    }
    
    $('marquee').marquee('pointer');
    
});

// jcarousel
/*
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        vertical: true,
        scroll: 5,
        auto: 5,
        buttonNextHTML: null,
        buttonPrevHTML: null,
        wrap: 'last'
    });
});
*/
