function create_fb(){
	var c = document.getElementById('fblikeJS'); 
	var e = document.createElement('fb:like');
	e.setAttribute('layout', 'button_count');
	e.setAttribute('action', 'like');
	//e.setAttribute('width', '450');
	c.appendChild(e);

	window.fbAsyncInit = function() {
        FB.init({appId: '135788243160626', status: true, cookie: true,
                 xfbml: true});
    };
	  
    (function() {
		var e = document.createElement('script');
        e.type = 'text/javascript';
        e.src = document.location.protocol +
          '//connect.facebook.net/cs_CZ/all.js';
        e.async = true;
        document.getElementById('fb-root').appendChild(e);
    }());

}


function GA_super(code){
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', code]);
	_gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
	
}
