$(document).ready(function(){ 
	$(document).pngFix(); 
	smallWidth = 150;
	$(".images-list img").css("width", smallWidth+"px").click(function(){
		if ($(this).width()!=smallWidth) {
			$(this).css("width", smallWidth+"px");
		} else {
			$(this).css("width", "auto");
		}
	});
	$(".cert a img").load(function(){
		$(this).dropShadow({color: "#000", blur: 8, top: 8, left: 8});
	});
}); 

