
/*
jQuery.log = function (o) {
	if (console && console.log) {  	
		console.log("%o", o);
		return this;
	}
};
*/

function RotateShots() {
	$('#shots').preloadImages([
		'/photos/shot_kenpo.png',
		'/photos/shot_kickboxing.png',
		'/photos/shot_grappling.png',
		'/photos/shot_escrima.png',
		'/photos/shot_selfdefense.png'],
		{
			wrap: '<li style="display:none;"></li>',
			onfinish: function() {
				$('#shots').innerfade({
					speed: 'slow',
					timeout: 4000,
					type: 'sequence',
					containerheight: '225px'
				});
			}
		}
	);
}
