$(document).ready(function() {
						   
var b = $('#banner-images'); // Get a reference to the banner div
var i = b.find('img'); // Pull all the images
b.empty().append(i); // Empty the banner div, and replace the images
b.find('img').wrap(''); // Wrap the images
b.cycle({
		fx: 'fade',
		speed: 3000 // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});		

});
