<?php
$page_title = 'Home';
require_once($_SERVER['DOCUMENT_ROOT'] . '/_includes/header.php');
?>

<section id="home–content">
<article>
<h2 class="giant">Discover the Best Businesses, Meetings &amp; Events in the Tampa Bay area!</h2>

<br/>

<iframe src="https://www.youtube.com/embed/ZHZaCoyW1ls" frameborder="0" allowfullscreen></iframe>

<h3>Tampa Bay Networkers</h3>

<p>
Not every meeting platform or event works for everyone and you should attend only the best meetings and events for you and your business. TampaBayNetworkers(TBN) wants to be your FREE one stop resource to find the Best Networking Meetings, Meetups &amp; Events you need to help you grow your business. <strong>Sign up to receive FREE updates to the best local Networking Meetings, Meetups, Events, and more.</strong>
</p>
</article>

<?php include($_SERVER['DOCUMENT_ROOT'] . '/_includes/side–form.php'); ?>
</section>
      
<script>
$(function(){
/*
YouTube video fitter
640/400 = 100/x
640x = 40000
x = 62.5
*/

var width = $('section#home–content').width();
width = width * 0.75;

var diff = Math.floor(width * 0.625);

$('iframe').css('width', '100%').css('height', diff + 'px');

$(window).resize(function(){
var width = $('section#home–content').width();
width = width * 0.75;

var diff = Math.floor(width * 0.625);

$('iframe').css('width', '100%').css('height', diff + 'px');
});
});
</script>

<?php
require_once($_SERVER['DOCUMENT_ROOT'] . '/_includes/footer.php');
?>