

    jQuery(document).ready(function() {
            jQuery('#mycarousel').jcarousel({
            vertical: true,
            btnNext: ".btn-down",
            btnPrev: ".btn-up",
            //visible: 6,
            wrap: "circular",
            scroll: 1,
            animation: 1000,
            buttonNextEvent: "mouseover",
            buttonPrevEvent: "mouseover"
            });
       
  });    
  

        



     $(document).ready(function() {

     
    
     //$('.btn-down').click()
     //carousel.scroll($.jcarousel.intval(1));
     //jQuery('#mycarousel').jcarousel('scroll', 1);
     //$('#mycarousel').trigger('scroll');
    
     $('#home #sidebar').hide().slideDown(500);
     $('#home #sidebar span').hide().fadeIn(3000);
         $("#home #sidebar").css({
             visibility: "visible"
        });

     }); 
   




$(document).ready(function() {
    $("#scroll ul#mycarousel li a img").css({
        backgroundColor: "#ffffff",
        padding:"1px"
        
    });
    $("#scroll ul#mycarousel li a img").hover(function() {
        $(this).stop().animate({
            backgroundColor: "#EA028C"
            
        }, 100);
    }, function() {
        $(this).stop().animate({
            backgroundColor: "#ffffff"
            
        }, 600);
    });
});



    $(document).ready(function() {
        $(".IndexTableInner").css({
        borderTopColor: "#666",
        borderRightColor: "#666",
        borderBottomColor: "#666",
        borderLeftColor: "#666"
            

        });
        $(".IndexTableInner").hover(function() {
            $(this).stop().animate({
            borderTopColor: "#EA028C",
            borderRightColor: "#EA028C",
            borderBottomColor: "#EA028C",
            borderLeftColor: "#EA028C"
               

            }, 100);
        }, function() {
            $(this).stop().animate({
            borderTopColor: "#666",
            borderRightColor: "#666",
            borderBottomColor: "#666",
            borderLeftColor: "#666"

            }, 500);
        });
    });


    


    $(document).ready(function() {
    $("#artist1").hide();
    $("#artist2").hide();
    $("#artist3").hide();
    $("#artist4").hide();
    $('ul#mycarousel li:nth-child(1)').hover(function() {
           $('#artist1').toggle();
            return false;
        });
        $('ul#mycarousel li:nth-child(2)').hover(function() {
            $('#artist2').toggle();
            return false;
        });
        $('ul#mycarousel li:nth-child(3)').hover(function() {
            $('#artist3').toggle();
            return false;
        });
        $('ul#mycarousel li:nth-child(4)').hover(function() {
            $('#artist4').toggle();
            return false;
        });
      
        
      
    });



    $(document).ready(function(){
    //$('.jcarousel-prev-vertical').trigger('click');
    $('.jcarousel-prev-vertical').fadeOut(0).delay(100).fadeIn(0, function() { $(this).focus().trigger("mouseover") });
    $('.jcarousel-next-vertical').fadeOut(0).delay(1500).fadeIn(0, function() { $(this).focus().trigger("mouseover") });

    });




$(document).ready(function() {
        $('.slideshow').cycle({
            fx: 'fade',
            speed: 1000
           
        });
    });



