// Auf geladenes Dokument warten
$(document).ready(function(){
	/* ######################	Referenzen Startseite ###################### */
	var referenzenLink	= $('a.img');
	
	$('> img',referenzenLink).css('opacity', '0.8');
	referenzenLink.each(function(i){
		$(this).hover(function(){
			$('> img', this).stop().animate({
				opacity: '1'
			}, 500);
		},
		function(){
			$('> img', this).stop().animate({
				opacity: '0.8'
			}, 500);
		});
		
	});
	
	
	/* twitter */
	$.getJSON("http://twitter.com/statuses/user_timeline/martinjuhasz.json?count=2&callback=?", function(data) {
		for (var i=0; i<data.length; i++){
    		if(i == 0) {
    			$(".about .rechts p:first").html(data[i].text);
    		} else if(i == 1) {
    			$(".about .rechts p:last").html(data[i].text);
    		}
		}    
	});
	
});
