It appears that you have not embedded the JS in the site.
According to the Facebook Documentation, you need to put this in as early as you can in the body:
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
And your code seems different than what Facebook generated for me:
<div class="fb-like" data-href="http://www.mostdealsforyou.com/" data-send="true" data-width="292" data-show-faces="true"></div>
Alternatively, you could just use an iFrame:
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mostdealsforyou.com%2F&send=false&layout=standard&width=292&show_faces=true&action=like&colorscheme=light&font&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:80px;" allowTransparency="true"></iframe>
If you want to change the behavior of this just checkout Facebook's like button generator.