The 18th Florida Medical Device Symposium will be held May 13-14, 2025, at the USF's Center for Advanced Medical Learning and Simulation (CAMLS) in the heart of downtown Tampa.
';
}
}
// Function to fetch and display latest news (middle section)
async function fetchLatestNews() {
const newsContainer = document.getElementById('latest-news-grid');
try {
// For demo purposes, creating mock news data
// In production, replace this with actual API fetch
const newsData = [
{
title: "Google's DeepMind Achieves Breakthrough in Protein Folding",
description: "AI system solves one of biology's grand challenges, predicting protein structures with unprecedented accuracy.",
category: "Research",
timeAgo: "2 hours ago",
imageUrl: "https://via.placeholder.com/300x200"
},
{
title: "Microsoft Invests $1 Billion in OpenAI Partnership",
description: "Tech giant backs leading AI research lab to develop artificial general intelligence technologies.",
category: "Business",
timeAgo: "5 hours ago",
imageUrl: "https://via.placeholder.com/300x200"
},
{
title: "AI Startups Raised Record $33 Billion in Funding This Year",
description: "Venture capital investments in artificial intelligence hit all-time high despite economic headwinds.",
category: "Finance",
timeAgo: "1 day ago",
imageUrl: "https://via.placeholder.com/300x200"
},
{
title: "New EU AI Regulations Could Reshape Global Standards",
description: "Proposed rules focus on transparency, accountability, and risk-based approach to AI governance.",
category: "Policy",
timeAgo: "2 days ago",
imageUrl: "https://via.placeholder.com/300x200"
},
{
title: "Stanford Launches Advanced AI Research Center",
description: "Leading university establishes dedicated institute focused on responsible AI development.",
category: "Education",
timeAgo: "3 days ago",
imageUrl: "https://via.placeholder.com/300x200"
},
{
title: "AI-Generated Art Wins Major Competition, Sparks Controversy",
description: "Digital artwork created using neural networks beats human competitors, raising questions about creativity.",
category: "Culture",
timeAgo: "4 days ago",
imageUrl: "https://via.placeholder.com/300x200"
}
];
// Clear loading indicator
newsContainer.innerHTML = '';
// Add each news item to the grid
newsData.forEach(item => {
const newsCard = document.createElement('div');
newsCard.className = 'article-card bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition';
newsCard.innerHTML = `