/**
 * @author Javier
 */
$(document).ready(function(){
	$("#banner").html('');
	$("#banner").flash({
		src : 'media/banner.swf',
		width: 889,
		height: 277
	});
	
	var new_bio = $(".biocompatible").html().replace(/ /g,'_')+".jpg";
	$(".biocompatible").html('<img src="/images/home/'+new_bio.toLowerCase()+'" />');
	
	$("h2").each(
		function(){
			var src = $(this).html().replace(/ /g,'_')+".gif";
			$(this).html('<img src="/images/home/'+src.toLowerCase()+'" />');
		}
	)
	
});