/* RESEN */
/* Javascript Functions - Forum
----------------------------------------------------------------------------- */


	$(document).ready(function() {
	
		ads();
		
	});
	
	$(window).load(function() {
	
	});
		

/* FUNCTION: ADS
----------------------------------------------------------------------------- */


	function ads() {
	
		$('div.ad:not(.rectangle) ul.content').each(function() {
		
			if ($(this).children().length > 1) {
			
				$(this).cycle({
				
					speed: 300, 
					timeout: 10000
			
				});
				
			}
		
		});
	
	}