$(document).ready(function(){

	/* megamenu */
	jQuery(".megamenu").megamenu();

	/* slider opitions */
	$('#newspot').bxSlider({
    mode: 'vertical',
	auto: true,
	autoControls: false,
	autoDelay: 2000,
	pause: 5000,
    pager: false,
	infiniteLoop: true,
	controls: false,
	autoHover: true
    });

    var slider = $('#slideshow').bxSlider({
	randomStart: true,
	mode: 'fade',
	auto: true,
	autoDelay: 2000,
	pause: 3000,
	pager: true,
	controls: false,
	infiniteLoop: true
    });

    $('#go-prev').click(function() {
    slider.goToPreviousSlide();
    return false;
    });

    $('#go-next').click(function() {
    slider.goToNextSlide();
    return false;
    });

    $('#newest_slide').bxSlider({
	displaySlideQty: 4,
    moveSlideQty: 4,
	infiniteLoop: false,
	hideControlOnEnd: true,
	controls: true
	});

	$('#bestseller_slide').bxSlider({
	displaySlideQty: 4,
    moveSlideQty: 4,
	infiniteLoop: false,
	hideControlOnEnd: true,
	controls: true
	});

	$('#promo_slide').bxSlider({
	displaySlideQty: 4,
    moveSlideQty: 4,
	infiniteLoop: false,
	hideControlOnEnd: true,
	controls: true
	});



	$('.item_add_to_basket img, .pages_buttons img, .item_div_more img, #buy .add_to_basket img, .opinion_add img, .feedback_button img').hover(function(){
		this.src = this.src.replace('.png','_on.png');
	},function(){
		this.src = this.src.replace('_on','');
	});


});




