Ok these lines right at the top..
div id="sidebar" class="grid_6">
<?php
if (is_home()) {
echo '<div class="box2"><div id="mpu_banner">
<p class="welcome"><strong>Welcome to LilWayneHQ.com:</strong> We are the #1 source for Weezy F Baby fans! We give you the latest news, music, pictures, videos, downloads, gossip and plenty more stuff on the greatest rapper alive. Don't forget to bookmark us and view the pages at the top.
<br /><br />
<strong>Updates:</strong> Download pages are coming back soon!</p>
</div></div>';
}
?>
..because you're using single quotes (for the echo), in this piece of text..
Don't forget to bookmark us and view the pages at the top.
..the single quote would need to be escaped...
Don\'t forget to bookmark us and view the pages at the top.
... however i'd suggest just switching the chunk of code above to..
<div id="sidebar" class="grid_6">
<?php if (is_home()) { ?>
<div class="box2"><div id="mpu_banner">
<p class="welcome"><strong>Welcome to LilWayneHQ.com:</strong> We are the #1 source for Weezy F Baby fans! We give you the latest news, music, pictures, videos, downloads, gossip and plenty more stuff on the greatest rapper alive. Don't forget to bookmark us and view the pages at the top.
<br /><br />
<strong>Updates:</strong> Download pages are coming back soon!</p>
</div></div>
<?php } ?>
..no need to escape the single quote that way...