$(document).ready(function(){
						   
/* Script to place Facebook Like button on 2nd Slide */			   
var idNum = 0;
$('.image_reel').children().each(function(){
	$(this).attr('id', 'slide_'+idNum);
	idNum += 1;
});
var slideContents = $('.image_reel #slide_1').html();

$('.image_reel #slide_1').replaceWith('<div id="fb_slide" style="float:left; position:relative;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FSmealFire&amp;layout=button_count&amp;show_faces=false&amp;width=90&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:21px; position: absolute; left: 80px; top: 310px;" allowTransparency="true"></iframe>'+slideContents+'</div>');						   
});
