//javascript
jQuery(document).ready(function($){ 
 	$('.social a').hover(function() {
		$(this).stop().animate({ "opacity": 1 });
	}, function() {
		$(this).stop().animate({ "opacity": 0.4 });
	});	
	$('.social a').stop().animate({ "opacity": 0.4 });	
	//$('ul.blokken li:last-child').css('margin-right', '0px');
	
	
	 $('.attachment-post-thumbnail').hover(function() {
		$(this).stop().animate({ "opacity": 0.5 });
	}, function() {
		$(this).stop().animate({ "opacity": 1 });
	});	

	$("#twitter").getTwitter({
		//userName: $("#twitter").attr("title"),
		userName: "motelmozaique",
		numTweets: 15,
		loaderText: "Loading tweets...",
		slideIn: true,
		showHeading: false,
		headingText: "Latest Tweets",
		showProfileLink: false	
	});
	
});