$(function() {
	$('.dyncontent_listing img:not(:first)').hide();
	$(window).load(function(){
		$('.dyncontent_listing').each(function(){
		var theElement = $(this);
			theElement.cycle({
		     fx: theElement.attr("effect"),
			 timeout: parseInt(theElement.attr("speed")),
			 speed:2000
		});	
		})
	})
	
});
