function tab() {
$jq('.block-tab-content .row').hide().filter(':first-child').show();
$jq('.block-tab-label a').click(function(){
$jq(this).parent().addClass('hover').siblings().removeClass('hover');
$jq('.block-tab-content > .row:eq('+ $jq('.block-tab-label ul li').index($jq(this).parent()) +')').show().siblings().hide();
return false;
});
}
$jq(".more-views, .carousel").jcarousel();
var t=setTimeout('tab()', 100);