$(document).ready(function()
{
  	try
	{		
		var link = 'http://www.facebook.com/home.php#!/pages/LesArten-Erfurt/154609631252397';
		document.getElementById('fb-like-box').innerHTML = '<fb:like-box href="' + link + '" width="150" height="400" connections="10" font="arial" show_face="false" layout="button_count" action="like" header="false" stream="false"></fb:like-box>';
	}
	catch (ne)
	{
		//alert(ne);
	}
	
	
	
});

function parse_url(link)
{
	var dump = link.split('/');
	dump = dump[3];
	return dump.replace(/.html/g, '');
}
	
function init_event_tooltip()
{
    try {
		
		
        $('.Event a').mouseenter(function()
		{			
            var dump = '<div class="veranstaltungen_ov_container_tooltip" id="tooltipid">' + $('#veranstaltungen_ov_' + $(this).attr('value')).html() + '</div>';
            $(this).append(dump);
        }).mouseleave(function(){
            $('#tooltipid').remove();
        });
    } 
    catch (e) {
        //alert(e);
    }
}

