$(document).ready(function() {

	$('div.news').each( function() {
		var h = $(this).find('h3');
		var a = $(this).find('a.more');
		a.html('').removeClass('more').detach();
		h.wrapInner(a);
	});

	$('#slideshow').cycle({fx:'fade',random:1,timeout:6000});

	
});
