$(function() {
	addthis_pub					= 'mummbai';
	addthis_brand				= 'Mummbai.dk';
	addthis_header_background 	= '#d66200';
	addthis_header_color		= '#fff';
	addthis_options				= 'email, favorites, facebook, myspace, twitter, google, linkedin, more';
	
	$('#toolbar p')
		.append(
			$(document.createElement('a'))
			.attr({
				id: 	'addThisButton',
				href: 	'http://www.addthis.com/bookmark.php?v=20'
			})
			.append(
				$(document.createElement('img'))
				.attr({
					src: 'http://s7.addthis.com/static/btn/lg-share-en.gif',
					alt: 'Tip en ven'
				})
			)
			.click(function(event){
				addthis_sendto();
				event.preventDefault();
			})
			.mouseover(	function(){	addthis_open(this, '', 'http://mummbai.dk', 'Arbejde på Roskilde Festival')})
			.mouseout(	function(){	addthis_close()})
		)
	;
	$.fontSizeControls.insertIn('#toolbar p');

	
	if($('.gallery')) {
		$('.gallery a').each(function() {
			$(this)
				.attr({
					rel: 	'frontpage-gallery',
					title: 	$(this).parent().attr('title')
				})
		})
		.fancybox()
	}
});