/**
 * Copyright 2011, http://www.webdesign-villingen.de/
 * @author	Alexander All
 * Date: 27 April, 2011
 */

var fbButton = function(url, id) {
	var fbLike = document.createElement("fb:like");	
	fbLike.setAttribute('href', url);
	fbLike.setAttribute('send', 'false');
	fbLike.setAttribute('layout', 'standard');
	fbLike.setAttribute('width', '450');
	fbLike.setAttribute('show_faces', 'false');
	fbLike.setAttribute('font', '');
	document.getElementById(id).appendChild(fbLike);	
}

