jQuery(function( $ ){
		//
		
		
		$('p').each(function(){
				$(this).removeAttr('style');
		});	
		$('a').each(function(){
				$(this).removeAttr('style');
		});	

		
		// cycle settings 
		$('.fadebox ul').cycle({
			fx: 'fade',
			speed:    2000, 
		    timeout:  4500 
		});
		
		$('.fadebox ul.words').cycle({
			fx: 'fade',
			speed:    2000, 
		    timeout:  2500 
		});
		
		
	
		//
});
	
