$('.facebook_like_box').ready(function(){
  $('.facebook_like_box').html('<iframe src="http://www.facebook.com/plugins/likebox.php?id=84929174372&amp;width=350&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:350px; height:62px;" allowTransparency="true"></iframe>');
});

jQuery(document).ready(function($){  
	externalLinks();
});

function externalLinks() {
	if (!document.getElementsByTagName) {
		return;
	}

	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
			anchor.target = "_blank";
		}
	}
}
