// Get fb:like to validate
function validate_fb() {
	var c = document.getElementById('fblike'); // get the placeholder
	var e = document.createElement('fb:like'); // Create the Plugin element
	
	// Add your attributes
	e.setAttribute('href', 'http://diagnostictabs.com/');
	e.setAttribute('send', 'true');
	e.setAttribute('layout', 'button_count');
	e.setAttribute('width', '150');
	e.setAttribute('show_faces', 'false');
	e.setAttribute('font', 'arial');
	//e.setAttribute('colorscheme', 'dark');
	
	// put the Plugin into the placeholder
	c.appendChild(e);
}

// facebook init code
function facebook_init() {
	window.fbAsyncInit = function() {
		FB.init({appId: '164411250279098', status: true, cookie: true, xfbml: true});
	};
	(function() {
		var e = document.createElement('script');
		e.type = 'text/javascript';
		e.src = document.location.protocol +
			'//connect.facebook.net/en_US/all.js';
		e.async = true;
		document.getElementById('fb-root').appendChild(e);
	}());
}
