var captionLength = 0;
var caption = "";

function startBannerShow(divId) {
    $.getJSON("agile_carousel_data.php", function(data) {
        $(document).ready(function(){
            $("#lingerie-show").agile_carousel({
                carousel_data: data,
                carousel_outer_height: 180,
                carousel_height: 371,
                slide_height: 371,
                carousel_outer_width: 270,
                slide_width: 270,
                transition_type: "fade",
                transition_time: 600,
                timer: 3000,
                continuous_scrolling: true
                //control_set_1: "numbered_buttons,previous_button,pause_button,next_button"
            });
        });
    });
}

function startBannerShowBad() {
    $.getJSON("agile_carousel_baddata.php", function(data) {
        $(document).ready(function(){
            $("#badmode-show").agile_carousel({
                carousel_data: data,
                carousel_outer_height: 180,
                carousel_height: 371,
                slide_height: 371,
                carousel_outer_width: 270,
                slide_width: 270,
                transition_type: "fade",
                transition_time: 600,
                timer: 3000,
                continuous_scrolling: true
                //control_set_1: "numbered_buttons,previous_button,pause_button,next_button"
            });
        });
    });
}

function type(textToWrite) 
{
	if(textToWrite != "-") caption = textToWrite;
	$('#tapetext').html(caption.substr(0, captionLength++));
	
	if(captionLength < caption.length+1)
	{
		setTimeout("type('-')", 100);
	}
	else
	{
		captionLength = 0;
		caption = "";
	} 
}
