jQuery(document).ready(function() {
if ( jQuery.browser.msie && jQuery.browser.version < 9 ) { // if ie<9
	jQuery('.zdeviantart-block').children().hover(function() {
		jQuery(this).siblings().stop().fadeTo(500,0.5).css({'margin-bottom' : '10px'});
	}, function() {
		jQuery(this).siblings().stop().fadeTo(500,1).css({'margin-bottom' : '10px'});
	});
} else {
	jQuery('.zdeviantart-block').children().hover(function() {
		jQuery(this).siblings().stop().fadeTo(500,0.5);
	}, function() {
		jQuery(this).siblings().stop().fadeTo(500,1);
	});
}
jQuery('img.zdeviantart-image').css('background', 'none');
});
