/*--------------------------------------------------
INIT
--------------------------------------------------*/
$(function () {
    //init categories carusel
    jQuery('#mycarousel').jcarousel({
        //wrap: 'circular',
	visible: 6
    });    
    
    //image rollover (on carusel)
    $("img.rollover").hover(
        function()
        {
            this.src = this.src.replace("_off","_on");
        },
        function()
        {
            this.src = this.src.replace("_on","_off");
        }
    );

    //init tabs
    $("#tabs_nav ul").tabs("#panes > div", {effect: 'fade', fadeOutSpeed: 400});
});

