    function add2Fav(x)
    {
        if (document.all  && !window.opera) 
        {
             if (typeof window.external == "object") 
             {
                window.external.AddFavorite (document.location, document.title);
                return true;
              }
              else return false;
        }
        else
        {
            x.href=document.location;
            x.title=document.title;
            x.rel = "sidebar";
            return true;
        }
    }

$(document).ready(function(){
    jQuery('.jcarousel').jcarousel({
		wrap: 'last',
        visible: 6,
        scroll: 1,
		wrap: 'both'
    });
    
    /*
    $('ul.tabs').delegate('li:not(.current)', 'click', function() {
        $(this).addClass('current').siblings().removeClass('current').parents('div.tabsWrap').find('div.box').hide().eq($(this).index()).fadeIn(150);
    });
  */  
});










