/**
 * Arquivo responsavel por configurar o facebook

var frame = $(".fb_ltr")[0].contentDocument;
$(".connect_widget_summary", frame).css("display", "none");

$(".fb_ltr").ready(function () {
	$(".fb_ltr").contents().find(".connect_widget_summary").css("display", "none");
});
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.wowcubo.com.br%2F&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowTransparency="true"></iframe>
*/
$(document).ready(function() {
	var iframe = $('<iframe></iframe>').attr('scrolling', 'no').attr('frameborder', '0').attr('allowTransparency','true').attr('src', 'http://www.facebook.com/plugins/like.php?app_id=224152094298235&amp;href=http%3A%2F%2Fwww.facebook.com%2Fnossafm&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=verdana&amp;height=35');
	iframe.load(function() {
	    $(this).contents().find('body').eq(0).css('color','red');
	});
	$('#fb-root').append(iframe);
});
