$(document).ready(function(){
	$(".lnk img").mouseover(function(){
		$(this).get(0).src=$(this).get(0).src.replace(/.png/,"_o.png");
	});
	$(".lnk img").mouseout(function(){
		$(this).get(0).src=$(this).get(0).src.replace(/_o.png/,".png");
	});
	try{document.execCommand('BackgroundImageCache', false, true);}catch(e){}
});
