﻿jQuery(document).ready(function($) {
	$('.wd-slider').advancedSlider({width:960, height:386, pauseSlideshowOnHover:true, effectType:'fade', horizontalSlices:'1', verticalSlices:'1',captionSize:'35',captionShowEffect:'fade'
	});
	if ($('#mycarousel').children().length > 7){
		$(".carousel .jCarouselLite").jCarouselLite({
			btnNext: ".carousel .next",
			btnPrev: ".carousel .prev",
			visible: 7,
			speed: 500 
		});  
	} else{
		$(".carousel a.button-slider").click(function(){
			return false
		});
	};
	$('.block-content dl dd ol li:last-child a').css('border-bottom','none');
	$('#recently-viewed-items li:last-child').css('border-bottom','none');
	// Accordion
    $('.accordion').accordion({
        active  : 0,
        autoHeight  : false,
        navigation  : true
    });
	// Fix Height
	var formloginHeight = $('#login-form .col2-set').outerHeight();
	$('#login-form .col2-set .content').css('height', formloginHeight);
	
	//Product Detail, collateral box
	if(jQuery('.product-collateral').children().size() == 0){
        jQuery('.product-collateral').remove();
    }
});

