function fixrolloverpng(obj) {
	var gettheid = obj.id;	
	//alert(obj.id);
	gettheid = gettheid.replace('_off','');
	gettheid = gettheid.replace('_over','');
	$('#'+obj.id).toggleClass(gettheid+'_off');
	$('#'+obj.id).toggleClass(gettheid+'_over');
}
