$(document).ready(function(){

	$('#grid').liveTwitter('#angst OR angst', {limit: 42, rate: 500}, function() {
			
			$('#title').prependTo($('#grid')).fadeIn(1000);
			
			$("#grid").vgrid({
				easeing: "easeOutQuint",
				useLoadImageEvent: false,
				ajax : { cache : false },
				time: 500,
				delay: 10,
				fadeIn: {
					time: 500,
					delay: 100
				}
			});
			
			$('.opa').hover(function() {
			    $(this).animate({ opacity: 1 }, 200);
			}, function() {
			    $(this).animate({ opacity: 0.1 }, 200);
			});
			
			$('.opa-20').hover(function() {
			    $(this).animate({ opacity: 1 }, 200);
			}, function() {
			    $(this).animate({ opacity: 0.2 }, 200);
			});

	});

	$(".imprint").click(function() {
		$("#imprint").fadeIn().show(1000);
		$("#imprint").hover(function() {}, function(){
			$(this).fadeOut().hide(1000);
		});
		return false;
	});

});



