Looks like issue with fbslidebox
Looks like you have jquery running
Read
http://api.jquery.com/jQuery.noConflict/
<script type="text/javascript">!window.jQuery && document.write(unescape('%3Cscript src="http://code.jquery.com/jquery.min.js"%3E%3C/script%3E'))</script>
<script type="text/javascript">
jQuery(document).ready(function($)
{
$("#FBSlideLikeBox_right").mouseenter(function()
{
$(this).stop().animate({right: 0}, "normal");
}).mouseleave(function()
{
$(this).stop().animate({right: -350}, "normal");
});;
});
</script>
Try change to
<script type="text/javascript">!window.jQuery && document.write(unescape('%3Cscript src="http://code.jquery.com/jquery.min.js"%3E%3C/script%3E'))</script>
<script type="text/javascript">
$.noConflict();
jQuery(document).ready(function($)
{
$("#FBSlideLikeBox_right").mouseenter(function()
{
$(this).stop().animate({right: 0}, "normal");
}).mouseleave(function()
{
$(this).stop().animate({right: -350}, "normal");
});;
});
</script>