$(document).ready(function(){
	$('a .iepng').fixPng();
	$("a img").hover(function() {
		$(this).css({opacity: 0.7});
	},function () {
		$(this).css({opacity: 1});
	});
});
