jQuery(document).ready(function($){
	// activate Masonry for overview items
	$('#overview').masonry({
		singleMode: true,
		resizeable: true,
		columnWidth: 229,
	});
	
	// replace logo-home text on rollover
	/*
	$("#logo").mouseover(function() {
		$originalText = 'Hello, <br/>I am Ulla!';
		$(this).html('Click to see all!');
	})
	.mouseout(function() {
		$(this).html($originalText);
	});
	*/
	
});
