$(document).ready(function(){
    /* COTENT */
    
    var speedSlide = 200;
    var speedItemSelect = 500;
    /* for auto scroll*/
    var cooldown = 6000; //milli-seconds

    /* auto scroll  */
    //var showProductsAuto = setInterval("nextProduct("+speedSlide+")", cooldown);
    /* MENU CHOICE */
    /* products */
     $('.productShow_choice_item').click(function() {
        var newestElementId = $(this).attr('id').split("pcs")[1];
         //hide actual element
        $(".productShow_info_item:visible").hide('slide', {direction: 'left'}, speedSlide, function() {
              //show the newest
             $('#item'+newestElementId).show('slide', {direction: 'right'}, speedSlide);
        });

    });
    /*  menu */
    $('.productShow_choice_item').click(function() {
       // clearInterval(showProductsAuto);
		var pos = $(this).offset(),
			pos2 = $('#productShow_choice_select').offset();
        $("#productShow_choice_select").animate({
                backgroundPosition: (pos.left-pos2.left) + 'px ' + '0px'
            },
            speedItemSelect,
            'easeOutQuart'
        );
    });
    /* buy it button */
    $('.buyIt').hover(function() {
        enableHover($(this));
    }, function() {
        disableHover($(this));
    });
    /* show other */
    /* open poll dialog */
    /*$('.cybook_info_item_linkOut a').click(function() {
        if( $('#sellers').css('display') == "none"){
            $('#sellers').fadeIn('fast');
        }else {
            $('#sellers').fadeOut('fast');
        }
     });*/
     /* close poll dialog on out */
   /*$('#sellers').hover(function(){}, function() {
        $('#sellers').fadeOut('fast');
    });*/


});

