function runFoo(swf, largeur, hauteur, couleur, alternatif){
	document.write('<object type="application/x-shockwave-flash" data="'+swf+'" width="'+largeur+'" height="'+hauteur+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+swf+'" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write(alternatif);
	document.write('</object>');
}

$(document).ready(function () {
	//kwicks begin
	$('.kwicks').kwicks({
		max : 574,
		spacing : 0,
		sticky : true,  
		event : 'click'
	});
	
	//rss begin
	$(".rss img").hover(function(){
		$(this).stop().animate({top:"0"}, "fast")									 
	}, function (){
		$(this).stop().animate({top:"-39"}, "medium")
	});
});