
// Prepare the banners to be shown in HTML
var op = '';

// For each of the banners to be appended:
var i, n;
for(i = 1, n = 7; i < n; i ++) {
	op += '<img src="'+ jQueryBaseHrefWithoutPrefix +'/application/modules/plastoria-login/resources/images/homepage-banners/banner-'+ i +'.jpg" alt="" />';
}

// Append the banners
$('#login-home-banners').append(op);

// Cycle through the banners
$('#login-home-banners').cycle({
	fx : 'fade',
	timeout: 4000,
	speedIn:  800, 
	speedOut: 300,
	nowrap : 0
});