$(window).load(function() {

    $('#slider').nivoSlider({

        effect:'fade',

        controlNav:false,

        pauseTime:4000

    });

    

    $('#productslide a').cycle({ 

        fx:      'fade', 

        speed:    400, 

        timeout:  4000,

        pause: true

    });

    

    $('#productslide img', ".lighting img").tipsy();

    

    $( "#tabs" ).tabs();

    

    $( "#products" ).tabs({select: tabHeight()});

    

    $("a.gallery").fancybox({

		'transitionIn'	:	'elastic',

		'transitionOut'	:	'elastic',

		'speedIn'		:	600, 

		'speedOut'		:	200, 

		'overlayShow'	:	false

	});
    
    tabHeight();
    
    
    function tabHeight() {
        $("#products div.tabs").each(function(){
            var height = 0;
            $(".cat", this).each(function(){
                height = Math.max($(this).height(), height);
            })
            
            $(".cat", this).each(function(){
                $(this).height(height);
            })    
        })
    }
    
    

});
