// JavaScript Document

function PrechargerImages() {
    for (Cpt = 0; Cpt < PrechargerImages.arguments.length; Cpt++) {
        var ImgAlt = new Image();
        ImgAlt.src = PrechargerImages.arguments[Cpt];
    }
}


//div panes
$(function() {
	// SLIDES
	
	$(".images .slidetabs").tabs(".images > div.img-slide", {
	
		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: "slow",
	
		// start from the beginning after the last tab
		rotate: true
	
	// use the slideshow plugin. It accepts its own configuration
	}).slideshow();
});
