// JavaScript Document
$(document).ready(function() {
	if (jQuery.support.opacity){
		$('#sticky1').cycle({
			fx:   		'zoom',
			sync:	 	0, 
			timeout: 	10000+1000*(Math.random()*11),
			next:   	'#sticky1', 
			pause:   	1,
			random:  	1,
		});
		
		$('#sticky2').cycle({
			fx:   		'zoom',
			sync:	 	0, 
			timeout: 	10000+1000*(Math.random()*11),
			next:   	'#sticky2', 
			pause:   	1,
			random:  	1,
		});
		
		$('#sticky3').cycle({
			fx:   		'zoom',
			sync:	 	0, 
			timeout: 	10000+1000*(Math.random()*11),
			next:   	'#sticky3', 
			pause:   	1,
			random:  	1,
		});
		$('#spsticky').cycle({
			fx:   		'zoom',
			sync:	 	0, 
			timeout: 	5000,
			
			pause:   	1,
			random:  	1,
		});
	}
	
	$('#spsticky').click(function (){
		location ="organisation.php?sub=sponsors"
	});
});


