//javascript
jQuery(document).ready(function($){  

	$('.thumb a').hover(function() {
		$(this).stop().animate({ "opacity": 0.6 });
	}, function() {
		$(this).stop().animate({ "opacity": 1 });
	});

	$('.attachment-thumbnail').hover(function() {
		$(this).stop().animate({ "opacity": 0.6 });
	}, function() {
		$(this).stop().animate({ "opacity": 1 });
	});	
	
	$('.rightblok img').hover(function() {
		$(this).stop().animate({ "opacity": 0.6 });
	}, function() {
		$(this).stop().animate({ "opacity": 1 });
	});	
	
});				
				