/*
 * Animation functions for the babes.
 * 
 */
function toggleBabes() {
	var blnIsIE = (navigator.appName == "Microsoft Internet Explorer");
	
	if (blnIsIE) {
		IE_toggle();
	} else {
		nonIE_toggle();
	}
};

function IE_toggle() {	
// no animation in IE because of png transparency problem.
	
	//1. count img elements in div with id topmeidleft, topmeidmiddle and topmeidright
	//2. set fist one to show (display:block) others hidden (display:none)
	//3. cycle through img elements and switch images
	// no alpha so this should work!
}

function nonIE_toggle() {
	 $('.slidegirls_left').cycle({
			fx: 'fade', 
	  		speed:	3500,
	  		timeout: 8000
	  });

	 $('.slidegirls_middle').cycle({
			fx: 'fade', 
	  		speed:	3500,
			timeout: 6000
	  });

	 $('.slidegirls_right').cycle({
			fx: 'fade', 
	  		speed:	3500,
	  		timeout: 8000	
	 });	
	
}


